public delegate void HttpContinueDelegate(int StatusCode, WebHeaderCollection httpHeaders);
Object
Delegate
HttpContinueDelegateThis type implements ICloneable.
System
Networking
Defines the shape of methods that are invoked when a System.Net.HttpStatusCode.Continue response is received by a web client.
- StatusCode
- A Int32 containing the numeric value of the HTTP status from the server.
- httpHeaders
- A WebHeaderCollection containing the headers returned with the response.
Use a HttpContinueDelegate instance to specify the methods that are automatically invoked whenever HTTP 100 ( System.Net.HttpStatusCode.Continue) responses are received from a web server.
System.Net Namespace