NotificationField.DigestGrouping Property
ダイジェストとして結合される通知を決定するためにそのフィールドが使用されるかどうかを示す、ダイジェスト グループの設定を取得または設定します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public Property DigestGrouping As Boolean
public bool DigestGrouping { get; set; }
public:
property bool DigestGrouping {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_DigestGrouping ()
/** @property */
public void set_DigestGrouping (boolean value)
public function get DigestGrouping () : boolean
public function set DigestGrouping (value : boolean)
プロパティ値
フィールドを基にダイジェストのグループ化を決定する場合は true、決定しない場合は false です。
解説
DigestGrouping プロパティは省略可能で、既定値は false です。
ダイジェスト配信を使用するときに通知をグループ化する必要があるかどうかを判断するためにフィールドを使用する場合は、DigestGrouping を true に設定します。たとえば、フライト アプリケーションが複数の航空会社の通知を送信する場合、Carrier フィールドの DigestGrouping を true に設定することにより、特定の航空会社用の通知を単一の通知にグループ化できます。
ダイジェスト配信を使用しているにもかかわらず、どのフィールドについても DigestGrouping が true に設定されていない場合、Notification Services は、同じ SubscriberId、DeviceName、および SubscriberLocale の値を持つ通知バッチにメッセージをグループ化します。
DigestGrouping 要素を追加、削除、または更新した後、アプリケーションを更新すると、対応する通知クラスがいったん削除され、再作成されます。同時に、この通知クラスが使用していた SQL Server のテーブルも削除され、再作成されます。
使用例
次の例は、ダイジェスト通知のグループ化に使用される通知フィールドを定義して通知クラスの通知フィールドのコレクションに追加する方法を示しています。
// Define a LeavingFrom notification field and use it for grouping
// digest messages. Add it to the end of the field collection
NotificationField notificationOrgin =
new NotificationField(flightNotifications, "LeavingFrom");
notificationOrgin.Type = "nvarchar(6)";
notificationOrgin.DigestGrouping = true;
flightNotifications.NotificationFields.Add(notificationOrgin);
' Define a LeavingFrom field and use it for grouping
' digest messages. Add it to the end of the collection.
Dim notificationOrgin As NotificationField = _
New NotificationField(flightNotifications, "LeavingFrom")
notificationOrgin.Type = "nvarchar(6)"
notificationOrgin.DigestGrouping = True
flightNotifications.NotificationFields.Add(notificationOrgin)
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
NotificationField Class
NotificationField Members
Microsoft.SqlServer.Management.Nmo Namespace