References a method to be called when a corresponding asynchronous operation is completes.

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 )

- T
- Type of object that will be the result of the operation.

- asyncResult (IAsyncResult<(Of <(T>)>))
- Handle to the asyncResult created by the operation.