- asyncResult
- The System.IAsyncResult that represents a specific invoke asynchronous operation, returned when calling System.Windows.Forms.Control.BeginInvoke(System.Delegate).
| Visual Basic (Declaration) | |
|---|---|
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> Public Function EndInvoke( _ ByVal asyncResult As IAsyncResult _ ) As Object | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Medical3DControl Dim asyncResult As IAsyncResult Dim value As Object value = instance.EndInvoke(asyncResult) | |
| C# | |
|---|---|
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)] public object EndInvoke( IAsyncResult asyncResult ) | |
| C++/CLI | |
|---|---|
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)] public: Object^ EndInvoke( IAsyncResult^ asyncResult ) | |
Parameters
- asyncResult
- The System.IAsyncResult that represents a specific invoke asynchronous operation, returned when calling System.Windows.Forms.Control.BeginInvoke(System.Delegate).
Return Value
The System.Object generated by the asynchronous operation.| Exception | Description |
|---|---|
| System.ArgumentNullException | The parameter value is null. |
| System.ArgumentException | The object was not created by a preceding call of the method from the same control. |
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code