次の方法で共有


RuleValue Class

他の RuleLogic インスタンスの評価から値を取得する Argument を表します。

名前空間: Microsoft.SqlServer.NotificationServices.Rules
アセンブリ: Microsoft.SqlServer.NotificationServices.Rules (microsoft.sqlserver.notificationservices.rules.dll 内)

構文

'宣言
Public Class RuleValue
    Inherits Argument
public class RuleValue : Argument
public ref class RuleValue : public Argument
public class RuleValue extends Argument
public class RuleValue extends Argument

解説

RuleValue クラスを使用すると、他のルール評価の結果をルール内の値として使用できます。

RuleValue(RuleLogic) コンストラクタで、または Rule プロパティを使用してルールを指定する必要があります。このルールには、定義しているルールまたは条件と同じ InputType 値が必要です。

FilterRuleRuleLogic インスタンスにブール型の戻り値が含まれている場合、型 PropertyRule のインスタンスには Result プロパティによって決まる戻り値の型が含まれます。

継承階層

System.Object
   Microsoft.SqlServer.NotificationServices.Rules.RuleObject
     Microsoft.SqlServer.NotificationServices.Rules.Argument
      Microsoft.SqlServer.NotificationServices.Rules.RuleValue

使用例

次の例では、ルールの値を使用して SimpleLeafCondition 用のロジックを PropertyRule から取得する方法を示します。SimpleLeafCondition により、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();

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

RuleValue Members
Microsoft.SqlServer.NotificationServices.Rules Namespace