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!

RichControl.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]
Overridable Public Function EndInvoke( _
   ByVal asyncResult As IAsyncResult _
) As Object
[C#]
public virtual object EndInvoke(
   IAsyncResult asyncResult
);
[C++]
public: virtual Object* EndInvoke(
   IAsyncResult* asyncResult
);
[JScript]
public function EndInvoke(
   asyncResult : IAsyncResult
) : Object;

Parameters

asyncResult
The IAsyncResult interface that represents a specific invoke asynchronous operation, returned when calling BeginInvoke.

Return Value

The return value generated by the asynchronous operation.

See Also

RichControl Class | RichControl Members | System.WinForms Namespace