TaskDescription 屬性
Returns a description of the Analysis Services Execute DDL task.
命名空間: Microsoft.DataTransformationServices.Tasks.DTSProcessingTask
組件: Microsoft.SqlServer.ASTasks (在 Microsoft.SqlServer.ASTasks.dll 中)
語法
'宣告
<BrowsableAttribute(False)> _
Public Shared ReadOnly Property TaskDescription As String
Get
'用途
Dim value As String
value = ASExecuteDDLTask.TaskDescription
[BrowsableAttribute(false)]
public static string TaskDescription { get; }
[BrowsableAttribute(false)]
public:
static property String^ TaskDescription {
String^ get ();
}
[<BrowsableAttribute(false)>]
static member TaskDescription : string
static function get TaskDescription () : String
屬性值
型別:System. . :: . .String
The description of the Analysis Services Execute DDL task.
範例
The following code sample displays information about the ASExecuteDDLTask 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 Execute DDL 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 Execute DDL Task", _
MessageBoxButtons.OK, MessageBoxIcon.Information)