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
StatusCode
intThe numeric value of the HTTP status from the server.
httpHeaders
WebHeaderCollectionThe 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
StatusCode
inthttpHeaders
WebHeaderCollectioncallback
AsyncCallbackobject
object
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
result
IAsyncResult
Invoke(int, WebHeaderCollection)
public virtual void Invoke(int StatusCode, WebHeaderCollection httpHeaders)
Parameters
StatusCode
inthttpHeaders
WebHeaderCollection