Udostępnij za pośrednictwem


Konstruktor FileSystemTask

Inicjuje nowe wystąpienie FileSystemTask klasy

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

Składnia

'Deklaracja
Public Sub New
'Użycie

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

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

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

Przykłady

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

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