ActionsPane.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.
Retrieves the return value of the specified asynchronous operation.
public:
System::Object ^ EndInvoke(IAsyncResult ^ asyncResult);
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)]
public object EndInvoke (IAsyncResult asyncResult);
[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)>]
abstract member EndInvoke : IAsyncResult -> obj
Public Function EndInvoke (asyncResult As IAsyncResult) As Object
Parameters
- asyncResult
- IAsyncResult
A specific invoke asynchronous operation, returned when calling BeginInvoke(Delegate).
Returns
The Object generated by the asynchronous operation.
- Attributes
Remarks
This method provides the same functionality as the System.Windows.Forms.Control.EndInvoke method. For more information about using this method, see System.Windows.Forms.Control.EndInvoke.