AsyncUiTask<TBusinessObject> Class
Represents a task that starts the user interface of a process and does not block the use of the Dashboard. The task is associated with a business object that is selected in the list pane of the Dashboard. The task is started from the task pane of the Dashboard.
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
System::MarshalByRefObject
Microsoft.WindowsServerSolutions.Administration.ObjectModel::Task
Microsoft.WindowsServerSolutions.Administration.ObjectModel::SelectionTask<TBusinessObject>
Microsoft.WindowsServerSolutions.Administration.ObjectModel::AsyncUiTask<TBusinessObject>
generic<typename TBusinessObject> where TBusinessObject : ref class public ref class AsyncUiTask sealed : SelectionTask<TBusinessObject>
Type Parameters
- TBusinessObject
Represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.
| Name | Description | |
|---|---|---|
![]() | AsyncUiTask<TBusinessObject>(Guid, String^, AsyncAction<TBusinessObject>^) | Initializes a new instance of the AsyncUiTask<TBusinessObject> class with the specified identifier, display name, and the specified delegate method that performs the action of the task. |
![]() | AsyncUiTask<TBusinessObject>(String^, AsyncAction<TBusinessObject>^) | Initializes a new instance of the AsyncUiTask<TBusinessObject> class with the specified display name and the specified delegate method that performs the action of the task. |
| Name | Description | |
|---|---|---|
![]() | ArgumentEquality | Gets or sets an EqualityChecker<TBusinessObject> delegate method that is used to determine whether two business objects are equal. |
![]() | ConditionProvider | Gets or sets a Converter<TInput, TOutput> delegate method that is used to convert an instance of a business object to the TaskCondition<TBusinessObject> for the task.(Inherited from SelectionTask<TBusinessObject>.) |
![]() | Description | |
![]() | DisplayName | |
![]() | Icon | |
![]() | ID | Gets the identifier of the task.(Inherited from Task.) |
![]() | Initialization | Gets or sets an Initializer<TBusinessObject> delegate method that is used to perform any type of lengthy initialization. |
![]() | Tag | |
![]() | TaskStatus | Gets and sets the status of the current task.(Inherited from Task.) |
![]() | UiActivation | Gets or sets the behavior that the Dashboard uses to decide whether to use an existing process when the same task is selected or to start a new process each time the task is selected. |
| Name | Description | |
|---|---|---|
![]() | 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.) |
![]() | Equals(Object^) | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetLifetimeService() | (Inherited from MarshalByRefObject.) |
![]() | GetType() | (Inherited from Object.) |
![]() | InitializeLifetimeService() | Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from Task.) |
![]() | ToString() | (Inherited from Object.) |
A task that is defined as AsyncUiTask<TBusinessObject> is specific to an object that is selected in the list pane of the Dashboard. To define an asynchronous task that is not specific to a selected object, use AsyncUiTask.
TBusinessObject represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.
An AsyncUiTask<TBusinessObject> must be added to a TaskCollection to be displayed in the task pane of the Dashboard.
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


