DTSProcessingTask.TaskDisplayName Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le nom unique de la tâche de traitement Analysis Services.
public:
static property System::String ^ TaskDisplayName { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public static string TaskDisplayName { get; }
[<System.ComponentModel.Browsable(false)>]
member this.TaskDisplayName : string
Public Shared ReadOnly Property TaskDisplayName As String
Valeur de propriété
Nom unique de la tâche de traitement Analysis Services.
- Attributs
Exemples
L’exemple de code suivant affiche des informations sur l’utilisation DTSProcessingTask et les TaskDisplayNameTaskDescription propriétés.
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)