다음을 통해 공유


ScriptTask Constructor

Initializes a new instance of the ScriptTask class.

네임스페이스: Microsoft.SqlServer.Dts.Tasks.ScriptTask
어셈블리: Microsoft.SqlServer.ScriptTask (in microsoft.sqlserver.scripttask.dll)

구문

‘선언
Public Sub New
public ScriptTask ()
public:
ScriptTask ()
public ScriptTask ()
public function ScriptTask ()

주의

Although you can call the task constructor, you typically create the task as a member of a package.

In the following example, the properties and methods of the ScriptTask are available using Properties of the TaskHost variable, th. For more information about casting the task, see the remarks 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

The following code sample creates a new ScriptTask by using the constructor.

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

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

ScriptTask Class
ScriptTask Members
Microsoft.SqlServer.Dts.Tasks.ScriptTask Namespace