ScriptTask コンストラクター
ScriptTask クラスの新しいインスタンスを初期化します。
名前空間: Microsoft.SqlServer.Dts.Tasks.ScriptTask
アセンブリ: Microsoft.SqlServer.ScriptTask (Microsoft.SqlServer.ScriptTask.dll)
構文
'宣言
Public Sub New
'使用
Dim instance As New ScriptTask()
public ScriptTask()
public:
ScriptTask()
new : unit -> ScriptTask
public function ScriptTask()
説明
タスク コンストラクターを呼び出すことはできますが、通常パッケージのメンバーとしてタスクを作成します。
次の例では、ScriptTask のプロパティとメソッドは、TaskHost 変数 th の Properties を使用して利用できます。 タスクのキャストの詳細については、「Add」の「解説」を参照してください。
Package pkg = new Package();
Executable exec1 = pkg.Executables.Add("STOCK:ScriptTask");
TaskHost th = exec1 as TaskHost;
// You can cast the InnerObject of the TaskHost
// to the specific class.
// For the code samples, task properties are accessed by using
// the properties of the TaskHost.
// ScriptTask myTask = th.InnerObject as ScriptTask;
Dim pkg As Package = New Package()
Dim exec1 As Executable = pkg.Executables.Add("STOCK:ScriptTask")
Dim th As TaskHost = exec1 as TaskHost
' You can cast the InnerObject of the TaskHost
' to the specific class.
' For the code samples, task properties are accessed by using
' the properties of the TaskHost.
' Dim myTask As ScriptTask = th.InnerObject as ScriptTask
使用例
次のコード サンプルでは、コンストラクターを使用して新しい ScriptTask を作成します。
ScriptTask myTask = new ScriptTask();
Dim myTask As ScriptTask = New ScriptTask()