ScriptObjectModel.TaskResult 속성

Returns the DTSExecResult of the Script task.

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

구문

‘선언
Public Property TaskResult As Integer 
    Get 
    Set
‘사용 방법
Dim instance As ScriptObjectModel 
Dim value As Integer 

value = instance.TaskResult

instance.TaskResult = value
public int TaskResult { get; set; }
public:
property int TaskResult {
    int get ();
    void set (int value);
}
member TaskResult : int with get, set
function get TaskResult () : int 
function set TaskResult (value : int)

속성 값

유형: System.Int32
The DTSExecResult of the Script task.

주의

Use the TaskResult property of the Dts object in Script task code to notify the package of the success or failure of the Script task.

The Script task can also return additional user-defined information about the results of its execution through the ExecutionValue property.

The following sample of code for use inside a Script task demonstrates the use of the TaskResult property.

Dts.TaskResult = ScriptResults.Success

참고 항목

참조

ScriptObjectModel 클래스

Microsoft.SqlServer.Dts.Tasks.ScriptTask 네임스페이스