ScriptTask Costruttore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe ScriptTask.
public:
ScriptTask();
public ScriptTask ();
Public Sub New ()
Esempio
L'esempio di codice seguente crea un nuovo ScriptTask usando il costruttore.
ScriptTask myTask = new ScriptTask();
Dim myTask As ScriptTask = New ScriptTask()
Commenti
Anche se è possibile chiamare il costruttore dell'attività, in genere si crea l'attività come membro di un pacchetto.
Nell'esempio seguente le proprietà e i metodi dell'oggetto ScriptTask sono disponibili usando Properties la TaskHost variabile , th
. Per altre informazioni sul cast dell'attività, vedere le osservazioni 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