HttpContinueDelegate Delegate

Definition

Represents the method that notifies callers when a continue response is received by the client.

public delegate void HttpContinueDelegate(int StatusCode, WebHeaderCollection ^ httpHeaders);
public delegate void HttpContinueDelegate(int StatusCode, WebHeaderCollection httpHeaders);
type HttpContinueDelegate = delegate of int * WebHeaderCollection -> unit
Public Delegate Sub HttpContinueDelegate(StatusCode As Integer, httpHeaders As WebHeaderCollection)

Parameters

StatusCode
Int32

The numeric value of the HTTP status from the server.

httpHeaders
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. This is a change from the behavior of the version 1.1 Framework.

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.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to