Partager via


UrlTask<TBusinessObject> Class

 

Represents a task that starts a Web browser and accesses a specified URL. 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.

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.UrlTask<TBusinessObject>

Syntax

public sealed class UrlTask<TBusinessObject> : SelectionTask<TBusinessObject>
where TBusinessObject : class
generic<typename TBusinessObject>
where TBusinessObject : ref class
public ref class UrlTask sealed : SelectionTask<TBusinessObject>
Public NotInheritable Class UrlTask(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
System_CAPS_pubmethod UrlTask<TBusinessObject>(String, Converter<TBusinessObject, Uri>)

Initializes a new instance of the UrlTask<TBusinessObject> class with the specified display name and the Uri object that is returned from the specified delegate method.

System_CAPS_pubmethod UrlTask<TBusinessObject>(String, Uri)

Initializes a new instance of the UrlTask<TBusinessObject> class with the specified display name and the specified URL.

Properties

Name Description
System_CAPS_pubproperty 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>.)

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

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

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.

A task that is defined as UrlTask<TBusinessObject> is specific to an object that is selected in the list pane of the Dashboard. To define a task that is not specific to a selected object, use UrlTask.

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