Konstruktor XMLTask
Inicjuje nowe wystąpienie XMLTask klasy
Przestrzeń nazw: Microsoft.SqlServer.Dts.Tasks.XMLTask
Zestaw: Microsoft.SqlServer.XMLTask (w Microsoft.SqlServer.XMLTask.dll)
Składnia
'Deklaracja
Public Sub New
'Użycie
Dim instance As New XMLTask()
public XMLTask()
public:
XMLTask()
new : unit -> XMLTask
public function XMLTask()
Uwagi
Przykładowy kod ilustruje wywołanie konstruktora zadania.Jednak w większości przypadków, który zostanie utworzony zadania jako element członkowski pakiet.Więcej informacji na temat rzutowanie zadania, patrz uwagi w Add.
Package pkg = new Package();
Executable exec1 = pkg.Executables.Add("STOCK:XMLTask");
TaskHost th = exec1 as TaskHost;
// You can cast the InnerObject of the TaskHost
// to the specific class.
// For the code samples, that task properties are accessed using
// the Properties of the TaskHost.
// XMLTask myTask = th.InnerObject as XMLTask;
Dim pkg As Package = New Package()
Dim exec1 As Executable = pkg.Executables.Add("STOCK:XMLTask")
Dim th As TaskHost = exec1 as TaskHost
' You can cast the InnerObject of the TaskHost
' to the specific class.
' For the code samples, that task properties are accessed using
' the Properties of the TaskHost.
' Dim myTask As XMLTask = th.InnerObject as XMLTask
Właściwości i metody XMLTask są dostępne za pomocą Properties.
Przykłady
Poniższy przykładowy kod tworzy nową XMLTask za pomocą konstruktora.
XMLTask myTask = new XMLTask();
Dim myTask As XMLTask = New XMLTask()