Task Oluşturucusu
Yeni bir başlatır örnek , Task WalkTree
Ad Alanı: Microsoft.SqlServer.Dts.Runtime
Derleme: Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS içinde.dll)
Sözdizimi
'Bildirim
Protected Sub New
'Kullanım
Dim instance As New Task()
protected Task()
protected:
Task()
new : unit -> Task
protected function Task()
Açıklamalar
Devralmıyor görevler için Task, kod örneği örnek bölümünde her görevin gösterir nasıl arama görev kurucusu.Ancak, çoğu durumda, görev bir paket üye olarak oluşturmakta.Görev çevrim hakkında daha fazla bilgi için bkz: Açıklamalar içinde Add.
Package pkg = new Package();
Executable exec1 = pkg.Executables.Add("STOCK:BulkInsertTask");
TaskHost th = exec1 as TaskHost;
// You can cast the InnerObject of the TaskHost
// to the specific class.
// For the code samples, the task properties are accessed using
// the Properties of the TaskHost.
//BulkInsertTask myTask = th.InnerObject as BulkInsertTask;
Dim pkg As Package = New Package()
Dim exec1 As Executable = pkg.Executables.Add("STOCK:BulkInsertTask")
Dim th As TaskHost = exec1 as TaskHost
' You can cast the InnerObject of the TaskHost
' to the specific class.
' For the code samples, the task properties are accessed using
' the Properties of the TaskHost.
'BulkInsertTask myTask = th.InnerObject as BulkInsertTask;
Özellikleri ve yöntemleri, BulkInsertTask kullanarak kullanılabilir olan TaskHost değişkeni, th.
Örnekler
Aşağıdaki kod örneği oluşturur Yeni bir BulkInsertTask kullanarak kurucusu.
BulkInsertTask myTask = new BulkInsertTask();
Dim myTask As BulkInsertTask = New BulkInsertTask()