'Declaration Public Delegate Sub AsyncOperationProgressHandler (Of TResult,TProgress)( _ ByVal asyncInfo As IAsyncOperationWithProgress(Of TResult,TProgress), _ ByVal progressInfo As TProgress _ )
public delegate void AsyncOperationProgressHandler<TResult,TProgress>( IAsyncOperationWithProgress<TResult,TProgress> asyncInfo, TProgress progressInfo )
Parameters
- asyncInfo
- The asynchronous operation.
- progressInfo
- The progress information.
Type Parameters
- TResult
- The result of the action.
- TProgress
- The type of the progress data.