다음을 통해 공유


ProcessTask Class

 

Represents a task that can be started from the task pane of the Dashboard. The task is not associated to items listed in the list 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.ProcessTask

Syntax

public sealed class ProcessTask : Task
public ref class ProcessTask sealed : Task
Public NotInheritable Class ProcessTask
    Inherits Task

Constructors

Name Description
System_CAPS_pubmethod ProcessTask(Guid, String, ProcessTaskStartInfo)

Initializes a new instance of the ProcessTask class with the specified identifier, display name, and the specified ProcessTaskStartInfo object.

System_CAPS_pubmethod ProcessTask(Guid, String, String)

Initializes a new instance of the ProcessTask class with the specified identifier, display name, and the specified file path.

System_CAPS_pubmethod ProcessTask(Guid, String, String, String)

Initializes a new instance of the ProcessTask class with the specified identifier, display name, file path, and command-line arguments.

System_CAPS_pubmethod ProcessTask(String, ProcessTaskStartInfo)

Initializes a new instance of the ProcessTask class with the specified display name and the specified ProcessTaskStartInfo object.

System_CAPS_pubmethod ProcessTask(String, String)

Initializes a new instance of the ProcessTask class with the specified display name and the specified file path.

System_CAPS_pubmethod ProcessTask(String, String, String)

Initializes a new instance of the ProcessTask class with the specified display name, file path, and command-line arguments.

Properties

Name Description
System_CAPS_pubproperty Description

Gets or sets the description of the Task object.(Inherited from Task.)

System_CAPS_pubproperty DisplayName

Gets the display name of the Task object.(Inherited from Task.)

System_CAPS_pubproperty Icon

Obsolete. Gets or sets the Icon that is associated with the Task object.(Inherited from Task.)

System_CAPS_pubproperty ID

Gets the identifier of the task.(Inherited from Task.)

System_CAPS_pubproperty Tag

Gets or sets an object that is used to identify the Task.(Inherited from Task.)

System_CAPS_pubproperty TaskStatus

Gets and sets the status of the current task.(Inherited from Task.)

System_CAPS_pubproperty 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
System_CAPS_pubmethod 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.)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetLifetimeService()

(Inherited from MarshalByRefObject.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod InitializeLifetimeService()

Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from Task.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Events

Name Description
System_CAPS_pubevent Completed

Represents an event that is raised when a task either successfully or unsuccessfully completes.(Inherited from Task.)

System_CAPS_pubevent Started

Represents an event that is raised when the task successfully starts.(Inherited from Task.)

Remarks

To create a process task that is associated to selected items, use ProcessTask<TBusinessObject>.

A ProcessTask 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