The delegate for handling recovery status change notifications. Namespace: Microsoft.EnterpriseManagement.Monitoring
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As New MonitoringRecoveryStatusChangeCallback(AddressOf HandlerMethod)

Syntax

Visual Basic
Public Delegate Sub MonitoringRecoveryStatusChangeCallback ( _
		jobId As Guid, _
		result As MonitoringRecoveryResult _
)
C#
public delegate void MonitoringRecoveryStatusChangeCallback (
		Guid jobId,
		MonitoringRecoveryResult result
)
C++
public delegate void MonitoringRecoveryStatusChangeCallback (
		Guid jobId, 
		MonitoringRecoveryResult^ result
)
J#
/** @delegate */
public delegate void MonitoringRecoveryStatusChangeCallback (
		Guid jobId, 
		MonitoringRecoveryResult result
)
JScript

Parameters

jobId

The globally unique identifier (GUID) for the job of the current notification.

result

The MonitoringRecoveryResult object that was changed.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP

See Also