DTSProcessingTask.TaskDescription 속성

정의

Analysis Services 처리 태스크에 대한 설명을 가져옵니다.

public:
 static property System::String ^ TaskDescription { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public static string TaskDescription { get; }
[<System.ComponentModel.Browsable(false)>]
member this.TaskDescription : string
Public Shared ReadOnly Property TaskDescription As String

속성 값

Analysis Services 처리 태스크에 대한 설명입니다.

특성

예제

다음 코드 샘플은 및 TaskDescription 속성을 사용하여 TaskDisplayNameDTSProcessingTask 대한 정보를 표시합니다.

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)  

적용 대상