Represents the method that will notify callers when a continue has been received by the client.
[Visual Basic] Public Delegate Sub HttpContinueDelegate( _ ByVal StatusCode As Integer, _ ByVal httpHeaders As WebHeaders _ ) [C#] public delegate void HttpContinueDelegate( int StatusCode, WebHeaders httpHeaders ); [C++] public __gc __delegate void HttpContinueDelegate( int StatusCode, WebHeaders* httpHeaders );
[JScript] In JScript, you can use the delegates in the NGWS frameworks, but you cannot define your own.
The declaration of your event-handling method must have the same parameters as the HttpContinueDelegate delegate declaration.
Use HttpContinueDelegate to specify the callback method to be called when a continue is received. When set, the delegate is called whenever protocol responses of type 100 are received.
This is useful when the client wants to display the stauts of data being received from the server.
Namespace: System.Net
Assembly: System.net.dll