다음을 통해 공유


ScriptTask 생성자

정의

ScriptTask 클래스의 새 인스턴스를 초기화합니다.

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

예제

다음 코드 샘플에서는 생성자를 사용하여 새 ScriptTask 코드를 만듭니다.

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

설명

작업 생성자를 호출할 수 있지만 일반적으로 태스크를 패키지의 멤버로 만듭니다.

다음 예제에서는 변수th를 사용하여 Properties 속성과 메서드 ScriptTaskTaskHost 사용할 수 있습니다. 작업 캐스팅에 대한 자세한 내용은 의 설명을 참조하세요 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  

적용 대상