ISynchronizeInvoke.EndInvoke(IAsyncResult) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Waits until the process started by calling BeginInvoke(Delegate, Object[]) completes, and then returns the value generated by the process.
public:
System::Object ^ EndInvoke(IAsyncResult ^ result);
public object? EndInvoke (IAsyncResult result);
public object EndInvoke (IAsyncResult result);
abstract member EndInvoke : IAsyncResult -> obj
Public Function EndInvoke (result As IAsyncResult) As Object
Parameters
- result
- IAsyncResult
An IAsyncResult interface that represents the asynchronous operation started by calling BeginInvoke(Delegate, Object[]).
Returns
An Object that represents the return value generated by the asynchronous operation.
Remarks
This method gets the return value of the asynchronous operation represented by the IAsyncResult passed by this interface. If the asynchronous operation has not completed, this method will wait until the result is available.