ExecuteProcess 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 ExecuteProcess 类的新实例。
public:
ExecuteProcess();
public ExecuteProcess();
Public Sub New ()
示例
以下代码示例是通过使用构造函数创建一个新的 ExecuteProcess 代码。
ExecuteProcessTask myTask = new ExecuteProcessTask();
Dim myTask As ExecuteProcessTask = New ExecuteProcessTask()
注解
代码示例展示了如何调用任务构造器。 然而,在大多数情况下,你会作为一个包的成员创建任务。 关于施放任务的更多信息,请参见相关 Add备注。
Package pkg = new Package();
Executable exec1 = pkg.Executables.Add("STOCK:ExecuteProcessTask");
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.
// ExecuteProcessTask myTask = th.InnerObject as ExecuteProcessTask;
Dim pkg As Package = New Package()
Dim exec1 As Executable = pkg.Executables.Add("STOCK:ExecuteProcessTask")
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.
' ExecuteProcessTask myTask = th.InnerObject as ExecuteProcessTask;
的属性和方法 ExecuteProcess 可通过变量 TaskHostth获得。