property OnCreateInputStream: TScHttpCreateInputStreamEvent;
type
TScHttpCreateInputStreamEvent = procedure(Sender: TObject; RequestInfo: TScHttpRequestInfo; var InputStream: TStream) of object;
Description
Occurs when the HTTP server receives data from the client and creates an incoming stream to store and process it.
OnCreateInputStream allows you to configure the TStream before filling it with data.
Parameters:
• | Sender - the object whose event handler is called; |
• | RequestInfo - the object of type TScHttpRequestInfo contains complete information about the request; |
• | ResponseInfo - the object of type TScHttpResponseInfo contains complete information about the response; |
• | InputStream - incoming stream for storing and processing data received from the client. |