RuleValue Constructor (RuleLogic)
RuleLogic インスタンスを使用して、RuleValue クラスの新しいインスタンスを初期化します。
名前空間: Microsoft.SqlServer.NotificationServices.Rules
アセンブリ: Microsoft.SqlServer.NotificationServices.Rules (microsoft.sqlserver.notificationservices.rules.dll 内)
構文
'宣言
Public Sub New ( _
rule As RuleLogic _
)
public RuleValue (
RuleLogic rule
)
public:
RuleValue (
RuleLogic^ rule
)
public RuleValue (
RuleLogic rule
)
public function RuleValue (
rule : RuleLogic
)
パラメータ
解説
指定した RuleLogic インスタンスには、定義しているルールまたは条件と同じ InputType 値が必要です。
型 FilterRule の RuleLogic インスタンスにブール型の戻り値が含まれている場合、型 PropertyRule のインスタンスには Result プロパティによって決まる戻り値の型が含まれます。
使用例
次の例では、ルールの値を使用して 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();
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
RuleValue Class
RuleValue Members
Microsoft.SqlServer.NotificationServices.Rules Namespace