언어

TaskHost.GetExpression(String) 메서드

정의

지정된 속성에 대한 표현식을 반환합니다. null은 표현식이 할당되지 않는다는 뜻입니다.

public:
 virtual System::String ^ GetExpression(System::String ^ propertyName);
public string GetExpression(string propertyName);
abstract member GetExpression : string -> string
override this.GetExpression : string -> string
Public Function GetExpression (propertyName As String) As String

매개 변수

propertyName
String

보고 싶은 표현이 있는 부동산의 이름입니다.

반품

속성을 평가하는 데 사용되는 식을 포함하는 문자열입니다.

구현

예제

다음 코드 예시 SetExpressionGetExpressionTaskHost는 . 이 코드 예시에서 호스팅 작업은 BulkInsertTask.

using System;  
using System.Collections.Generic;  
using System.Text;  
using Microsoft.SqlServer.Dts.Runtime;  
using Microsoft.SqlServer.Dts.Tasks.BulkInsertTask;  

namespace Microsoft.SqlServer.SSIS.Sample  
{  
    class Program  
        {  
        static void Main(string[] args)  
        {  
            Package pkg = new Package();  
            TaskHost th = (TaskHost)pkg.Executables.Add("STOCK:BulkInsertTask");  

            // View information about the CheckConstraints property  
            // before setting it using the SetExpression method.  
            Boolean checkConstraint = (Boolean)th.Properties["CheckConstraints"].GetValue(th);  
            Console.WriteLine("Original value of CheckConstraints: {0}", checkConstraint);  

            // Use SetExpression to set the value to true.  
            String myTrueString = "true";  
            th.Properties["CheckConstraints"].SetExpression(th, myTrueString);  

            // Validate the package to set the expression onto the property.  
            DTSExecResult valResult = pkg.Validate(null, null, null, null);  

            // Retrieve the new value and the expression.  
            checkConstraint = (Boolean)th.Properties["CheckConstraints"].GetValue(th);  
            String myExpression = th.Properties["CheckConstraints"].GetExpression(th);  
            Console.WriteLine("New value of CheckConstraints: {0}", checkConstraint);  
            Console.WriteLine("Expression for CheckConstraints: {0}", myExpression);  
        }  
    }  
}  

샘플 출력:

CheckConstraints의 원래 값: 거짓

CheckConstraints의 새로운 값: 참

CheckConstraints에 대한 표현식: 참

설명

객체 위 propertyName 에서 사용할 수 있는 모든 속성이 될 수 있습니다.

적용 대상