PropertyRule Constructor (InputType, PropertyStatement[])
テーブル入力またはビュー入力と、1 つ以上のプロパティ ステートメントを使用して、FilterRule クラスの新しいインスタンスを初期化します。
名前空間: Microsoft.SqlServer.NotificationServices.Rules
アセンブリ: Microsoft.SqlServer.NotificationServices.Rules (microsoft.sqlserver.notificationservices.rules.dll 内)
構文
'宣言
Public Sub New ( _
inputType As InputType, _
ParamArray propertyStatements As PropertyStatement() _
)
public PropertyRule (
InputType inputType,
params PropertyStatement[] propertyStatements
)
public:
PropertyRule (
InputType^ inputType,
... array<PropertyStatement^>^ propertyStatements
)
public PropertyRule (
InputType inputType,
PropertyStatement[] propertyStatements
)
public function PropertyRule (
inputType : InputType,
... propertyStatements : PropertyStatement[]
)
パラメータ
- propertyStatements
入力の評価に使用される 0 個以上の PropertyStatement オブジェクトです。このパラメータで PropertyStatements プロパティを設定します。
解説
propertyStatements パラメータを使用して PropertyStatement オブジェクトを定義しない場合は、PropertyStatements プロパティを使用して少なくとも 1 つの PropertyStatement を定義する必要があります。複数のステートメントを定義すると、このルールの評価の結果は、Condition 条件を満たす場合に最初のステートメントの結果となり、どの条件も満たさない場合には NULL となります。
使用例
次の例では、Few、Some、および Alot という 3 つのプロパティを定義するプロパティ ルールを定義する方法を示します。このプロパティ ルールを使用して、Quantity が Few であるイベントに対するサブスクリプションを定義します。
// Define a new property that defines "Few," "Some," and "Alot"
// of inventory.
PropertyRule quantityCategory = new PropertyRule(
new ViewInputType(eventView),
new PropertyStatement(new SimpleLeafCondition(
new FieldValue("Quantity"),
SimpleOperator.LessThan, 100), "Few"),
new PropertyStatement(new BetweenLeafCondition(
new FieldValue("Quantity"), 100, 200), "Some"),
new PropertyStatement(new SimpleLeafCondition(
new FieldValue("Quantity"),
SimpleOperator.GreaterThan, 200),
"Alot"));
// Create subscription and define basic properties.
s = new Subscription(nsApplication, subscriptionClassName);
s.SubscriberId = "Scott";
s.Enabled = true;
s.RuleName = "InventoryTrackerRule";
s.SetFieldValue("DeviceName", "myDevice");
s.SetFieldValue("SubscriberLocale", "en-us");
// Use the new property to return only products with "few" remaining
// in inventory. Note that the category definition can be reused.
s.Condition = new SimpleLeafCondition(
new RuleValue(quantityCategory),
SimpleOperator.Equals,
"Few");
// Add subscription.
s.Add();
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
PropertyRule Class
PropertyRule Members
Microsoft.SqlServer.NotificationServices.Rules Namespace