SyncUiTask Constructor (Guid, String, SyncAction)
Initializes a new instance of the SyncUiTask class with the specified identifier, display name, and the specified delegate method that performs the action for the task.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public SyncUiTask(
Guid id,
string displayName,
SyncAction action
)
public:
SyncUiTask(
Guid id,
String^ displayName,
SyncAction^ action
)
Public Sub New (
id As Guid,
displayName As String,
action As SyncAction
)
Parameters
id
Type: System.GuidThe unique identifier of the task.
displayName
Type: System.StringThe display name of the task.
action
Type: Microsoft.WindowsServerSolutions.Administration.ObjectModel.SyncActionA delegate method that provides the action that the task performs.
Remarks
A SyncUiTask object is used to ensure that a task is completed before any other action is performed in the Dashboard.
See Also
SyncUiTask Overload
SyncUiTask Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top