ExecuteProcess Construtor
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe ExecuteProcess.
public:
ExecuteProcess();
public ExecuteProcess ();
Public Sub New ()
Exemplos
O exemplo de código a seguir cria um novo ExecuteProcess usando o construtor.
ExecuteProcessTask myTask = new ExecuteProcessTask();
Dim myTask As ExecuteProcessTask = New ExecuteProcessTask()
Comentários
O exemplo de código mostra como chamar o construtor de tarefas. No entanto, na maioria dos casos, você criará a tarefa como membro de um pacote. Para obter mais informações sobre como lançar a tarefa, consulte as observações em 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;
As propriedades e os ExecuteProcess métodos do estão disponíveis usando a TaskHost variável. th