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