Share via


ExecuteProcess 构造函数

定义

初始化 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;  

可以使用变量th的属性和方法。ExecuteProcessTaskHost

适用于