'宣言 Public Delegate Sub AsyncOperationWithProgressCompletedHandler (Of TResult,TProgress)( _ ByVal asyncInfo As IAsyncOperationWithProgress(Of TResult,TProgress), _ ByVal asyncStatus As AsyncStatus _ )
'使用法 Dim instance As New AsyncOperationWithProgressCompletedHandler(Of TResult,TProgress)(AddressOf HandlerMethod)
public delegate void AsyncOperationWithProgressCompletedHandler<TResult,TProgress>( IAsyncOperationWithProgress<TResult,TProgress> asyncInfo, AsyncStatus asyncStatus )
パラメータ
- asyncInfo
- 非同期操作。
- asyncStatus
- 非同期アクションのステータス。
型パラメータ
- TResult
- TProgress
- 進捗状況データの型。