ScriptTask Konstruktor
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menginisialisasi instans baru kelas ScriptTask.
public:
ScriptTask();
public ScriptTask ();
Public Sub New ()
Contoh
Sampel kode berikut membuat yang baru ScriptTask dengan menggunakan konstruktor .
ScriptTask myTask = new ScriptTask();
Dim myTask As ScriptTask = New ScriptTask()
Keterangan
Meskipun Anda dapat memanggil konstruktor tugas, Anda biasanya membuat tugas sebagai anggota paket.
Dalam contoh berikut, properti dan metode tersedia ScriptTask menggunakan PropertiesTaskHost variabel , th
. Untuk informasi selengkapnya tentang mentransmisikan tugas, lihat keterangan di Add.
Package pkg = new Package();
Executable exec1 = pkg.Executables.Add("STOCK:ScriptTask");
TaskHost th = exec1 as TaskHost;
// You can cast the InnerObject of the TaskHost
// to the specific class.
// For the code samples, task properties are accessed by using
// the properties of the TaskHost.
// ScriptTask myTask = th.InnerObject as ScriptTask;
Dim pkg As Package = New Package()
Dim exec1 As Executable = pkg.Executables.Add("STOCK:ScriptTask")
Dim th As TaskHost = exec1 as TaskHost
' You can cast the InnerObject of the TaskHost
' to the specific class.
' For the code samples, task properties are accessed by using
' the properties of the TaskHost.
' Dim myTask As ScriptTask = th.InnerObject as ScriptTask