ASExecuteDDLTask.TaskDisplayName 属性

定义

获取 Analysis Services 执行 DDL 任务的唯一名称。

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

属性值

Analysis Services 执行 DDL 任务的唯一名称。

属性

示例

下面的代码示例使用 TaskDisplayNameTaskDescription 属性显示有关 ASExecuteDDLTask 的信息。

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)  

注解

这是任务的可本地化显示名称。

适用于