Table of Contents

Delegate HttpContinueDelegate

Namespace
System.Net
Assembly
System.Net.Http.dll

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 int

The numeric value of the HTTP status from the server.

httpHeaders WebHeaderCollection

The headers returned with the 100-continue response from the server.

Extension Methods

Constructors

HttpContinueDelegate(object, IntPtr)

public HttpContinueDelegate(object @object, IntPtr method)

Parameters

object object
method IntPtr

Methods

BeginInvoke(int, WebHeaderCollection, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(int StatusCode, WebHeaderCollection httpHeaders, AsyncCallback callback, object @object)

Parameters

StatusCode int
httpHeaders WebHeaderCollection
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(int, WebHeaderCollection)

public virtual void Invoke(int StatusCode, WebHeaderCollection httpHeaders)

Parameters

StatusCode int
httpHeaders WebHeaderCollection