Udostępnij za pośrednictwem


Konstruktor WmiDataReaderTask

Inicjuje nowe wystąpienie WmiDataReaderTask klasy

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Tasks.WmiDataReaderTask
Zestaw:  Microsoft.SqlServer.WMIDRTask (w Microsoft.SqlServer.WMIDRTask.dll)

Składnia

'Deklaracja
Public Sub New
'Użycie

Dim instance As New WmiDataReaderTask()
public WmiDataReaderTask()
public:
WmiDataReaderTask()
new : unit -> WmiDataReaderTask
public function WmiDataReaderTask()

Uwagi

Przykładowy kod ilustruje wywołanie konstruktora zadania.Jednak w większości przypadków, który zostanie utworzony zadania jako element członkowski pakiet.Więcej informacji na temat rzutowanie zadania, patrz uwagi w 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

Właściwości i metody WmiDataReaderTask są dostępne przy użyciu TaskHost zmienną, th.

Przykłady

Poniższy przykładowy kod tworzy nową WmiDataReaderTask za pomocą konstruktora.

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