ContinueDelegate Property
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets or sets the delegate method called when an HTTP 100-continue response is received from the Internet resource.
Namespace: System.Net
Assembly: System.Http (in System.Http.dll)
Syntax
'Declaration
Public Property ContinueDelegate As HttpContinueDelegate
public HttpContinueDelegate ContinueDelegate { get; set; }
public:
property HttpContinueDelegate^ ContinueDelegate {
HttpContinueDelegate^ get ();
void set (HttpContinueDelegate^ value);
}
member ContinueDelegate : HttpContinueDelegate with get, set
function get ContinueDelegate () : HttpContinueDelegate
function set ContinueDelegate (value : HttpContinueDelegate)
Property Value
Type: System.Net. . :: . .HttpContinueDelegate
A delegate that implements the callback method that executes when an HTTP Continue response is returned from the Internet resource. The default value is nullNothingnullptrunita null reference (Nothing in Visual Basic).
Remarks
The ContinueDelegate property specifies the callback method to call when the client receives a 100-Continue response.
When the ContinueDelegate property is set, the client calls the delegate whenever protocol responses of type HttpStatusCode..::..Continue (100) are received. This is useful if you want the client to display the status of the data being received from the Internet resource.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.