NotificationField Class
通知クラス スキーマのフィールドを表します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public NotInheritable Class NotificationField
Inherits NamedSmoObject
public sealed class NotificationField : NamedSmoObject
public ref class NotificationField sealed : public NamedSmoObject
public final class NotificationField extends NamedSmoObject
public final class NotificationField extends NamedSmoObject
解説
通知フィールドには、サブスクライバと関係のあるデータ、またはそれ以外の場合は最終通知の生成に使用されるデータが格納されます。
通知クラスに対してカスタム フィールドを定義するには、どのデータを送信するかを識別する必要があり、通知を生成するサブスクリプション ルールにより生成されるデータと一致する必要があります。
各通知フィールドには、フィールドの名前とデータ型を定義する必要があります。
通知フィールドを追加または削除した後、アプリケーションを更新すると、対応する通知クラスがいったん削除され、再作成されます。同時に、この通知クラスが使用していたデータベース テーブルも削除され、再作成されます。アプリケーションを更新する前に、アプリケーション データベースを必ずバックアップするようにしてください。
継承階層
System.Object
Microsoft.SqlServer.Management.Smo.SmoObjectBase
Microsoft.SqlServer.Management.Smo.SqlSmoObject
Microsoft.SqlServer.Management.Smo.NamedSmoObject
Microsoft.SqlServer.Management.Nmo.NotificationField
使用例
次の例は、通知フィールドを定義して通知クラスの通知フィールドのコレクションに追加する方法を示しています。
// 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 Members
Microsoft.SqlServer.Management.Nmo Namespace
NotificationComputedField Class