WmiDataReaderTask Construtor

Definição

Inicializa uma nova instância da classe WmiDataReaderTask.

public:
 WmiDataReaderTask();
public WmiDataReaderTask ();
Public Sub New ()

Exemplos

O exemplo de código a seguir cria um novo WmiDataReaderTask usando o construtor.

WmiDataReaderTask myTask = new WmiDataReaderTask();  
Dim myTask As WmiDataReaderTask =  New WmiDataReaderTask()  

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 os comentários em Add.

Package pkg = new Package();  
Executable exec1 = pkg.Executables.Add("STOCK:WmiDataReaderTask");  
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.  
// WmiDataReaderTask myTask = th.InnerObject as WmiDataReaderTask;  
Dim pkg As Package =  New Package()   
Dim exec1 As Executable =  pkg.Executables.Add("STOCK:WmiDataReaderTask")   
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.  
' Dim myTask As WmiDataReaderTask =  th.InnerObject as WmiDataReaderTask  

As propriedades e os WmiDataReaderTask métodos estão disponíveis usando a TaskHost variável. th

Aplica-se a