Konstruktor WmiEventWatcherTask
Inicjuje nowe wystąpienie WmiEventWatcherTask klasy
Przestrzeń nazw: Microsoft.SqlServer.Dts.Tasks.WmiEventWatcherTask
Zestaw: Microsoft.SqlServer.WMIEWTask (w Microsoft.SqlServer.WMIEWTask.dll)
Składnia
'Deklaracja
Public Sub New
'Użycie
Dim instance As New WmiEventWatcherTask()
public WmiEventWatcherTask()
public:
WmiEventWatcherTask()
new : unit -> WmiEventWatcherTask
public function WmiEventWatcherTask()
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:WmiEventWatcherTask");
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.
// WmiEventWatcherTask myTask = th.InnerObject as WmiEventWatcherTask;
Dim pkg As Package = New Package()
Dim exec1 As Executable = pkg.Executables.Add("STOCK:WmiEventWatcherTask")
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 WmiEventWatcherTask = th.InnerObject as WmiEventWatcherTask
Właściwości i metody WmiEventWatcherTask są dostępne przy użyciu TaskHost zmienną, th.
Przykłady
Poniższy przykładowy kod tworzy nową WmiEventWatcherTask za pomocą konstruktora.
WmiEventWatcherTask myTask = new WmiEventWatcherTask();
Dim myTask As WmiEventWatcherTask = New WmiEventWatcherTask()
Zobacz także