Konstruktor Exec80PackageTask
Inicjuje nowe wystąpienie programu Exec80PackageTask Klasa
Przestrzeń nazw: Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask
Zestaw: Microsoft.SqlServer.Exec80PackageTask (w Microsoft.SqlServer.Exec80PackageTask.dll)
Składnia
'Deklaracja
Public Sub New
'Użycie
Dim instance As New Exec80PackageTask()
public Exec80PackageTask()
public:
Exec80PackageTask()
new : unit -> Exec80PackageTask
public function Exec80PackageTask()
Uwagi
Przykładowy kod ilustruje wywołanie konstruktora zadania.Jednak w większości przypadków zostanie utworzony zadania jako element członkowski pakiet.Aby uzyskać więcej informacji na rzutowanie zadania patrz uwagi w Add.
Package pkg = new Package();
Executable exec1 = pkg.Executables.Add("STOCK:Exec80PackageTask");
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.
// Exec80PackageTask myTask = th.InnerObject as Exec80PackageTask;
Dim pkg As Package = New Package()
Dim exec1 As Executable = pkg.Executables.Add("STOCK:Exec80PackageTask")
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 Exec80PackageTask = th.InnerObject as Exec80PackageTask
Właściwości i metody Exec80PackageTask są dostępne za pomocą TaskHost zmienną, th.
Przykłady
Poniższy przykładowy kod tworzy nowy Exec80PackageTask za pomocą konstruktora.
Exec80PackageTask myTask = new Exec80PackageTask();
Zobacz także