Sprache

ScriptTask Konstruktor

Definition

Initialisiert eine neue Instanz der ScriptTask-Klasse.

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

Beispiele

Das folgende Codebeispiel erstellt ein neues ScriptTask durch Verwendung des Konstruktors.

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

Hinweise

Obwohl man den Task Constructor aufrufen kann, erstellt man die Aufgabe typischerweise als Mitglied eines Pakets.

Im folgenden Beispiel sind die Eigenschaften und Methoden der ScriptTask mit der TaskHost Variablen verfügbarProperties. th Für weitere Informationen zum Casting der Aufgabe siehe die Bemerkungen in 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  

Gilt für: