References a method to be called when a corresponding asynchronous operation is completes.
Declaration Syntax
C# | Visual Basic | Visual C++ | J# |
public delegate void AsyncCallback<T>( IAsyncResult<T> asyncResult )
Public Delegate Sub AsyncCallback(Of T) ( _ asyncResult As IAsyncResult(Of T) _ )
generic<typename T> public delegate void AsyncCallback( IAsyncResult<T>^ asyncResult )
Generic Template Parameters
- T
- Type of object that will be the result of the operation.
Parameters
- asyncResult (IAsyncResult<(Of <(<'T>)>)>)
- Handle to the asyncResult created by the operation.