ScriptTask コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ScriptTask クラスの新しいインスタンスを初期化します。
public:
ScriptTask();
public ScriptTask ();
Public Sub New ()
例
次のコード サンプルでは、コンストラクターを使用して新しい ScriptTask を作成します。
ScriptTask myTask = new ScriptTask();
Dim myTask As ScriptTask = New ScriptTask()
注釈
タスク コンストラクターを呼び出すことはできますが、通常パッケージのメンバーとしてタスクを作成します。
次の例では、ScriptTask のプロパティとメソッドは、Properties 変数 th
の TaskHost を使用して利用できます。 タスクのキャストの詳細については、次の解説 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