Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents a task that starts the user interface of a process and blocks the use of the Dashboard until the task is complete.
Namespace:   Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly:  Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Inheritance Hierarchy
System.Object
  System.MarshalByRefObject
    Microsoft.WindowsServerSolutions.Administration.ObjectModel.Task
      Microsoft.WindowsServerSolutions.Administration.ObjectModel.SyncUiTask
Syntax
public sealed class SyncUiTask : Task
public ref class SyncUiTask sealed : Task
Public NotInheritable Class SyncUiTask
    Inherits Task
Constructors
| Name | Description | |
|---|---|---|
| .jpeg) | SyncUiTask(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. | 
| .jpeg) | SyncUiTask(Guid, String, SyncAction, Boolean) | Creates a new instance of the SyncUiTask object, using the specified ID, display name, action, and global parameter. | 
| .jpeg) | SyncUiTask(String, SyncAction) | Initializes a new instance of the SyncUiTask class with the specified display name and the specified delegate method that performs the action for the task. | 
| .jpeg) | SyncUiTask(String, SyncAction, Boolean) | Creates a new instance of the SyncUiTask using the specified display name, action, and global flag. | 
Properties
| Name | Description | |
|---|---|---|
| .jpeg) | ConditionProvider | Gets and sets the condition provider. | 
| .jpeg) | Description | Gets or sets the description of the Task object.(Inherited from Task.) | 
| .jpeg) | DisplayName | Gets the display name of the Task object.(Inherited from Task.) | 
| .jpeg) | Icon | Obsolete. Gets or sets the Icon that is associated with the Task object.(Inherited from Task.) | 
| .jpeg) | ID | Gets the identifier of the task.(Inherited from Task.) | 
| .jpeg) | Tag | Gets or sets an object that is used to identify the Task.(Inherited from Task.) | 
| .jpeg) | TaskStatus | Gets and sets the status of the current task.(Inherited from Task.) | 
Methods
| Name | Description | |
|---|---|---|
| .jpeg) | CreateObjRef(Type) | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Inherited from Task.) | 
| .jpeg) | Equals(Object) | (Inherited from Object.) | 
| .jpeg) | GetHashCode() | (Inherited from Object.) | 
| .jpeg) | GetLifetimeService() | (Inherited from MarshalByRefObject.) | 
| .jpeg) | GetType() | (Inherited from Object.) | 
| .jpeg) | InitializeLifetimeService() | Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from Task.) | 
| .jpeg) | ToString() | (Inherited from Object.) | 
Events
| Name | Description | |
|---|---|---|
| .jpeg) | Completed | Represents an event that is raised when a task either successfully or unsuccessfully completes.(Inherited from Task.) | 
| .jpeg) | Started | Represents an event that is raised when the task successfully starts.(Inherited from Task.) | 
Remarks
A task that is defined as SyncUiTask is not specific to objects listed in the list pane of the Dashboard. To define a synchronous task that is specific to an object that is selected in the Dashboard, use SyncUiTask<TBusinessObject>.
A SyncUiTask must be added to a TaskCollection to be displayed in the task pane of the Dashboard.
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top