MonitoringTaskStatusChangeCallback Delegate
Applies To: Operations Manager for System Center 2012
Note: This API is now obsolete.
The delegate for handling task status change notifications (per batch).
Namespace: Microsoft.EnterpriseManagement.Monitoring
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
[ObsoleteAttribute("Use TaskStatusChangeCallback")]
public delegate void MonitoringTaskStatusChangeCallback(
Guid batchId,
ReadOnlyCollection<MonitoringTaskResult> results,
bool completed
)
[ObsoleteAttribute("Use TaskStatusChangeCallback")]
public delegate void MonitoringTaskStatusChangeCallback(
Guid batchId,
ReadOnlyCollection<MonitoringTaskResult^>^ results,
bool completed
)
[<ObsoleteAttribute("Use TaskStatusChangeCallback")>]
type MonitoringTaskStatusChangeCallback =
delegate of
batchId:Guid *
results:ReadOnlyCollection<MonitoringTaskResult> *
completed:bool -> unit
<ObsoleteAttribute("Use TaskStatusChangeCallback")>
Public Delegate Sub MonitoringTaskStatusChangeCallback (
batchId As Guid,
results As ReadOnlyCollection(Of MonitoringTaskResult),
completed As Boolean
)
Parameters
batchId
Type: System.GuidThe batch identifier of the current notification.
results
Type: System.Collections.ObjectModel.ReadOnlyCollection<MonitoringTaskResult>The results of the change.
completed
Type: System.BooleanDetermines whether this is the last update for the batch.
See Also
Microsoft.EnterpriseManagement.Monitoring Namespace
Return to top