Freigeben über


DTSProcessingTask.TaskDisplayName Property

Gets the unique name for the Analysis Services Processing task.

Namespace: Microsoft.DataTransformationServices.Tasks.DTSProcessingTask
Assembly : Microsoft.SqlServer.ASTasks (in microsoft.sqlserver.astasks.dll)

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public Shared ReadOnly Property TaskDisplayName As String
[BrowsableAttribute(false)] 
public static string TaskDisplayName { get; }
[BrowsableAttribute(false)] 
public:
static property String^ TaskDisplayName {
    String^ get ();
}
/** @property */
public static String get_TaskDisplayName ()
public static function get TaskDisplayName () : String

Eigenschaftswert

The unique name for the Analysis Services Processing task.

Beispiel

The following code sample displays information about the DTSProcessingTask by using the TaskDisplayName and TaskDescription properties.

    string taskInfo;
    taskInfo = String.Format("{0}: {1}", thTask.Properties("TaskDisplayName").GetValue(thTask), thTask.Properties("TaskDescription").GetValue(thTask));
    MessageBox.Show(taskInfo, "Analysis Services Processing Task", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Dim taskInfo As String
    taskInfo = [String].Format("{0}: {1}", _
      thTask.Properties("TaskDisplayName").GetValue(thTask), _
      thTask.Properties("TaskDescription").GetValue(thTask))
    MessageBox.Show(taskInfo, "Analysis Services Processing Task", _
      MessageBoxButtons.OK, MessageBoxIcon.Information)

Threadsicherheit

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

DTSProcessingTask Class
DTSProcessingTask Members
Microsoft.DataTransformationServices.Tasks.DTSProcessingTask Namespace