TaskDisplayName Propiedad
Returns the name of the Execute DDL task.
Espacio de nombres: Microsoft.DataTransformationServices.Tasks.DTSProcessingTask
Ensamblado: Microsoft.SqlServer.ASTasks (en Microsoft.SqlServer.ASTasks.dll)
Sintaxis
'Declaración
<BrowsableAttribute(False)> _
Public Shared ReadOnly Property TaskDisplayName As String
Get
'Uso
Dim value As String
value = ASExecuteDDLTask.TaskDisplayName
[BrowsableAttribute(false)]
public static string TaskDisplayName { get; }
[BrowsableAttribute(false)]
public:
static property String^ TaskDisplayName {
String^ get ();
}
[<BrowsableAttribute(false)>]
static member TaskDisplayName : string
static function get TaskDisplayName () : String
Valor de la propiedad
Tipo: System. . :: . .String
The name of the task.
Notas
This is the localizable display name of the task.
Ejemplos
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)