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!

HttpClientProtocol.EndInvoke

Ends an asynchronous invocation of a method of a HTTP web service.

[Visual Basic]
Protected Function EndInvoke( _
   ByVal asyncResult As IAsyncResult _
) As Object
[C#]
protected object EndInvoke(
   IAsyncResult asyncResult
);
[C++]
protected: Object* EndInvoke(
   IAsyncResult* asyncResult
);
[JScript]
protected function EndInvoke(
   asyncResult : IAsyncResult
) : Object;

Parameters

asyncResult
The IAsyncResult returned from BeginInvoke.

Return Value

An array of objects containing the return value and any by-reference or out parameters of the derived class method.

Exceptions

Exception Type Condition
ArgumentException asyncResult is not the return value from BeginInvoke.

See Also

HttpClientProtocol Class | HttpClientProtocol Members | System.Web.Services.Protocols Namespace