次の方法で共有


PropertyStatement Constructor (Condition, Argument)

条件とスカラ結果を使用して、PropertyStatement クラスの新しいインスタンスを初期化します。

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

構文

'宣言
Public Sub New ( _
    condition As Condition, _
    result As Argument _
)
public PropertyStatement (
    Condition condition,
    Argument result
)
public:
PropertyStatement (
    Condition^ condition, 
    Argument^ result
)
public PropertyStatement (
    Condition condition, 
    Argument result
)
public function PropertyStatement (
    condition : Condition, 
    result : Argument
)

パラメータ

  • condition
    評価する条件を表す Condition オブジェクトです。このパラメータで Condition プロパティを設定します。
  • result
    条件が満たされた場合に返されるスカラ結果を表す Argument オブジェクトです。このパラメータで Result プロパティを設定します。

解説

result パラメータを new ConstantValue(null) に設定することにより、NULL 結果を定義できます。

使用例

次の例では、FewSome、および Alot という 3 つのプロパティを指定する方法を示します。サブスクライバではサブスクリプションを定義する際にこのプロパティを使用できます。

// 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 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

PropertyStatement Class
PropertyStatement Members
Microsoft.SqlServer.NotificationServices.Rules Namespace