TaskStatusChangeCallback Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a method for handling task status change notifications per batch.
public delegate void TaskStatusChangeCallback(Guid batchId, IList<TaskResult ^> ^ results, bool completed);
public delegate void TaskStatusChangeCallback(Guid batchId, IList<TaskResult> results, bool completed);
type TaskStatusChangeCallback = delegate of Guid * IList<TaskResult> * bool -> unit
Public Delegate Sub TaskStatusChangeCallback(batchId As Guid, results As IList(Of TaskResult), completed As Boolean)
Parameters
- batchId
- Guid
The batch id of the current notification.
- results
- IList<TaskResult>
The results.
- completed
- Boolean
A value that indicates whether this is the last update for this batchId.