ScriptTask 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 ScriptTask 类的新实例。
public:
ScriptTask();
public ScriptTask ();
Public Sub New ()
示例
下面的代码示例使用构造函数创建一个新的 ScriptTask 。
ScriptTask myTask = new ScriptTask();
Dim myTask As ScriptTask = New ScriptTask()
注解
尽管可以调用任务构造函数,但通常会将任务创建为包的成员。
在下面的示例中, ScriptTask 使用变量可以使用的属性和方法 Properties TaskHost th 。 有关强制转换任务的详细信息,请参阅中的备注 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