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 is associated to an item that is selected in the list pane of the Dashboard. The task is started from the task pane of the Dashboard.
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.SelectionTask<TBusinessObject>
        Microsoft.WindowsServerSolutions.Administration.ObjectModel.ProcessTask<TBusinessObject>
Syntax
public sealed class ProcessTask<TBusinessObject> : SelectionTask<TBusinessObject>
where TBusinessObject : class
generic<typename TBusinessObject>
where TBusinessObject : ref class
public ref class ProcessTask sealed : SelectionTask<TBusinessObject>
Public NotInheritable Class ProcessTask(Of TBusinessObject As Class)
    Inherits SelectionTask(Of 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.
Constructors
| Name | Description | |
|---|---|---|
| .jpeg) | ProcessTask<TBusinessObject>(Guid, String, Converter<TBusinessObject, ProcessTaskStartInfo>) | Initializes a new instance of the ProcessTask<TBusinessObject> class with the specified identifier, display name, and the ProcessTaskStartInfo object that is returned from the specified delegate method. | 
| .jpeg) | ProcessTask<TBusinessObject>(Guid, String, String) | Initializes a new instance of the ProcessTask<TBusinessObject> class with the specified identifier, display name, and the specified file path. | 
| .jpeg) | ProcessTask<TBusinessObject>(Guid, String, String, String) | Initializes a new instance of the ProcessTask<TBusinessObject> class with the specified identifier, display name, file path, and command-line arguments to run the program. | 
| .jpeg) | ProcessTask<TBusinessObject>(String, Converter<TBusinessObject, ProcessTaskStartInfo>) | Initializes a new instance of the ProcessTask<TBusinessObject> class with the specified display name and the ProcessTaskStartInfo object that is returned from the specified delegate method. | 
| .jpeg) | ProcessTask<TBusinessObject>(String, ProcessTaskStartInfo) | Initializes a new instance of the ProcessTask<TBusinessObject> class with the specified display name and the specified ProcessTaskStartInfo object. | 
| .jpeg) | ProcessTask<TBusinessObject>(String, String) | Initializes a new instance of the ProcessTask<TBusinessObject> class with the specified display name and the specified file path. | 
| .jpeg) | ProcessTask<TBusinessObject>(String, String, Converter<TBusinessObject, String>) | Initializes a new instance of the ProcessTask<TBusinessObject> class with the specified display name, file path, and the string that is returned from the specified delegate method. The string that is returned contains the command-line arguments for the program to be run. | 
| .jpeg) | ProcessTask<TBusinessObject>(String, String, String) | Initializes a new instance of the ProcessTask<TBusinessObject> class with the specified display name, file path, and command-line arguments to run the program. | 
Properties
| Name | Description | |
|---|---|---|
| .jpeg) | 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>.) | 
| .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.) | 
| .jpeg) | 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. | 
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
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.
To create a process task that is not associated to a selected item, use ProcessTask.
A ProcessTask<TBusinessObject> 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