Event type for stream encoding processing
Source position: httpdefs.pp line 468
type TOnStreamEncodingEvent = procedure( |
Sender: TRequest; |
const State: TContentStreamingState; |
const Buf; |
const Size: Integer |
) of object; |
Sender |
|
Object that triggered the stream encoding event |
State |
|
Current streaming state |
Buf |
|
Buffer containing stream data |
Size |
|
Size of the stream buffer |
TOnStreamEncodingEvent is an event type called during stream content encoding processing. It provides access to the encoding state, buffer data, and size for custom processing of streamed content.