HttpContinueDelegate Delegate
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Represents the method that notifies callers when a continue response is received by the client.
Namespace: System.Net
Assembly: System.Http (in System.Http.dll)
Syntax
'Declaration
Public Delegate Sub HttpContinueDelegate ( _
StatusCode As Integer, _
httpHeaders As WebHeaderCollection _
)
public delegate void HttpContinueDelegate(
int StatusCode,
WebHeaderCollection httpHeaders
)
public delegate void HttpContinueDelegate(
int StatusCode,
WebHeaderCollection^ httpHeaders
)
type HttpContinueDelegate =
delegate of
StatusCode:int *
httpHeaders:WebHeaderCollection -> unit
JScript does not support delegates.
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.
Remarks
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.
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.