Event type for handling unknown content encoding
Source position: httpdefs.pp line 469
type TOnUnknownEncodingEvent = procedure( |
Sender: TRequest; |
const ContentType: string; |
Stream: TStream |
) of object; |
Sender |
|
Object that triggered the unknown encoding event |
ContentType |
|
Content type that could not be recognized |
Stream |
|
Stream containing the unknown encoded content |
TOnUnknownEncodingEvent is an event type triggered when unknown content encoding is encountered. It allows custom handling of content with unrecognized encoding through the provided stream.