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!

ISynchronizeInvoke.EndInvoke

Retrieves the return value of the asynchronous operation represented by the IAsyncResult interface passed. If the async operation has not been completed, this function will block until the result is available.

[Visual Basic]
Function EndInvoke( _
   ByVal result As IAsyncResult _
) As Object
[C#]
object EndInvoke(
   IAsyncResult result
);
[C++]
Object* EndInvoke(
   IAsyncResult* result
) = 0;
[JScript]
function EndInvoke(
   result : IAsyncResult
) : Object;

Parameters

result
[To be supplied.]

Return Value

The return value generated by the asynchronous operation.

See Also

ISynchronizeInvoke Interface | ISynchronizeInvoke Members | System.ComponentModel Namespace