Compartilhar via


DTSProcessingTask.TaskDescription Propriedade

Definição

Obtém a descrição da tarefa Processamento do 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

Valor da propriedade

A descrição da tarefa Processamento do Analysis Services.

Atributos

Exemplos

O exemplo de código a seguir exibe informações sobre o DTSProcessingTask usando as TaskDisplayName propriedades e TaskDescription .

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)  

Aplica-se a