TaskHost.GetExpression Method
指定したプロパティの式を返します。Null は、式が割り当てられていないことを示します。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (microsoft.sqlserver.manageddts.dll 内)
構文
'宣言
Public Function GetExpression ( _
propertyName As String _
) As String
public string GetExpression (
string propertyName
)
public:
virtual String^ GetExpression (
String^ propertyName
) sealed
public final String GetExpression (
String propertyName
)
public final function GetExpression (
propertyName : String
) : String
パラメータ
- propertyName
参照する式のプロパティの名前です。
戻り値
プロパティの評価に使用される式を表す String です。
解説
propertyName には、オブジェクトで使用可能な任意のプロパティを指定できます。
使用例
次のコード例は、TaskHost の SetExpression メソッドと GetExpression メソッドの使用方法を示します。このコード例では、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);
}
}
}
サンプルの出力 :
Original value of CheckConstraints: False
New value of CheckConstraints: True
Expression for CheckConstraints: true
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
TaskHost Class
TaskHost Members
Microsoft.SqlServer.Dts.Runtime Namespace