System.Net.HttpContinueDelegate Delegate

public delegate void HttpContinueDelegate(int StatusCode, WebHeaderCollection httpHeaders);

Base Types

Object
  Delegate
    HttpContinueDelegate

This type implements ICloneable.

Assembly

System

Library

Networking

Summary

Defines the shape of methods that are invoked when a System.Net.HttpStatusCode.Continue response is received by a web client.

Parameters

StatusCode
A Int32 containing the numeric value of the HTTP status from the server.
httpHeaders
A WebHeaderCollection containing the headers returned with the response.

Description

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.

See Also

System.Net Namespace