Udostępnij za pośrednictwem


Konstruktor ExecuteProcess

Inicjuje nowe wystąpienie ExecuteProcess klasy

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Tasks.ExecuteProcess
Zestaw:  Microsoft.SqlServer.ExecProcTask (w Microsoft.SqlServer.ExecProcTask.dll)

Składnia

'Deklaracja
Public Sub New
'Użycie

Dim instance As New ExecuteProcess()
public ExecuteProcess()
public:
ExecuteProcess()
new : unit -> ExecuteProcess
public function ExecuteProcess()

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:ExecuteProcessTask");
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.
// ExecuteProcessTask myTask = th.InnerObject as ExecuteProcessTask;
Dim pkg As Package =  New Package() 
Dim exec1 As Executable =  pkg.Executables.Add("STOCK:ExecuteProcessTask") 
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.
' ExecuteProcessTask myTask = th.InnerObject as ExecuteProcessTask;

Właściwości i metody ExecuteProcess są dostępne przy użyciu TaskHost zmienną, th.

Przykłady

Poniższy przykładowy kod tworzy nową ExecuteProcess za pomocą konstruktora.

ExecuteProcessTask myTask = new ExecuteProcessTask();
Dim myTask As ExecuteProcessTask =  New ExecuteProcessTask()