다음을 통해 공유


DTSProcessingTask.TaskDisplayName Property

Gets the unique name for the Analysis Services Processing task.

네임스페이스: Microsoft.DataTransformationServices.Tasks.DTSProcessingTask
어셈블리: Microsoft.SqlServer.ASTasks (in microsoft.sqlserver.astasks.dll)

구문

‘선언
<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

속성 값

The unique name for the Analysis Services Processing task.

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)

스레드 보안

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.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

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