Partager via


DTSProcessingTask.TaskDescription Property

Gets the description of the Analysis Services Processing task.

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

Syntaxe

'Déclaration
<BrowsableAttribute(False)> _
Public Shared ReadOnly Property TaskDescription As String
[BrowsableAttribute(false)] 
public static string TaskDescription { get; }
[BrowsableAttribute(false)] 
public:
static property String^ TaskDescription {
    String^ get ();
}
/** @property */
public static String get_TaskDescription ()
public static function get TaskDescription () : String

Valeur de propriété

The description of the Analysis Services Processing task.

Exemple

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)

Sécurité des threads

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.

Plateformes

Plateformes de développement

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Plateformes cibles

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Voir aussi

Référence

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