A delegate used for a callback method that gets called when the status of a task changes. Namespace: Microsoft.EnterpriseManagement.Monitoring.ClientMonitoring
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As New AemTaskStatusCallback(AddressOf HandlerMethod)

Syntax

Visual Basic
Public Delegate Sub AemTaskStatusCallback ( _
		result As Boolean, _
		sdkErrorMessage As String, _
		taskOutput As String _
)
C#
public delegate void AemTaskStatusCallback (
		bool result,
		string sdkErrorMessage,
		string taskOutput
)
C++
public delegate void AemTaskStatusCallback (
		bool result, 
		String^ sdkErrorMessage, 
		String^ taskOutput
)
J#
/** @delegate */
public delegate void AemTaskStatusCallback (
		boolean result, 
		String sdkErrorMessage, 
		String taskOutput
)
JScript

Parameters

result

A Boolean value that determines whether the task succeeded or not. This value is true if the task succeeded and false if the task failed.

sdkErrorMessage
taskOutput

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