NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpContinueDelegate Delegate

Represents the method that will notify callers when a continue has been received by the client.

[Visual Basic]
Public Delegate Sub HttpContinueDelegate( _
   ByVal StatusCode As Integer, _
   ByVal httpHeaders As WebHeaders _
)
[C#]
public delegate void HttpContinueDelegate(
   int StatusCode,
   WebHeaders httpHeaders
);
[C++]
public __gc __delegate void HttpContinueDelegate(
   int StatusCode,
   WebHeaders* httpHeaders
);

[JScript] In JScript, you can use the delegates in the NGWS frameworks, but you cannot define your own.

Parameters [Visual Basic, C#, C++]

The declaration of your event-handling method must have the same parameters as the HttpContinueDelegate delegate declaration.

StatusCode
[To be supplied.]
httpHeaders
[To be supplied.]

Remarks

Use HttpContinueDelegate to specify the callback method to be called when a continue is received. When set, the delegate is called whenever protocol responses of type 100 are received.

This is useful when the client wants to display the stauts of data being received from the server.

Requirements

Namespace: System.Net

Assembly: System.net.dll

See Also

System.Net Namespace