HttpContinueDelegate Delegate
Represents the method that notifies callers when a continue response is received by the client.
Namespace: System.Net
Assembly: System (in System.dll)
public delegate void HttpContinueDelegate( int StatusCode, WebHeaderCollection httpHeaders )
Parameters
- StatusCode
- Type: System.Int32
The numeric value of the HTTP status from the server.
- httpHeaders
- Type: System.Net.WebHeaderCollection
The headers returned with the 100-continue response from the server.
Use HttpContinueDelegate to specify the callback method to be called when an HTTP 100-continue response is received from the server. When set, the delegate is called whenever the first protocol response of type HttpStatusCode.Continue is received. This is a change from the behavior of the version 1.1 Framework.
Your event handler must declare the same parameters as the HttpContinueDelegate.
Note |
|---|
StatusCode is always HttpStatusCode.Continue. |
This is useful when the client wants to display the status of data being received from the server.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note