Delegate HttpContinueDelegate
Represents the method that notifies callers when a continue response is received by the client.
public delegate void HttpContinueDelegate(int StatusCode, WebHeaderCollection httpHeaders)
Parameters
StatusCodeintThe numeric value of the HTTP status from the server.
httpHeadersWebHeaderCollectionThe headers returned with the 100-continue response from the server.
- Extension Methods
Constructors
HttpContinueDelegate(object, IntPtr)
public HttpContinueDelegate(object @object, IntPtr method)
Parameters
Methods
BeginInvoke(int, WebHeaderCollection, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(int StatusCode, WebHeaderCollection httpHeaders, AsyncCallback callback, object @object)
Parameters
StatusCodeinthttpHeadersWebHeaderCollectioncallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Invoke(int, WebHeaderCollection)
public virtual void Invoke(int StatusCode, WebHeaderCollection httpHeaders)
Parameters
StatusCodeinthttpHeadersWebHeaderCollection