Releases: wazzamatazz/HttpRequestTransformer
Releases · wazzamatazz/HttpRequestTransformer
2.2.0
2.1.0
Changes:
- Adds new delegating handlers for compressing outgoing HTTP content using GZip or Brotli compression (latter on .NET Standard 2.1 or later only).
2.0.0
Breaking Changes:
HttpRequestTransformHandler
has been removed.HttpRequestTransformDelegate
is now calledBeforeSendDelegate
.HttpResponseTransformDelegate
is now calledResponseReceivedDelegate
.
Other Changes:
- Functionality offered by old
HttpRequestTransformHandler
type has been moved to newHttpRequestPipelineHandler
type. HttpRequestPipelineHandler
allows you to define delegates that will be invoked before a request is sent, after a response is received, or both.
1.1.0
- Adds the ability to inspect/modify a received
HttpResponseMessage
, as well as inspect/modify anHttpRequestMessage
before it is sent.