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