Application.NotificationClasses Property
Notification Services アプリケーションの通知クラスのセットを格納する NotificationClassCollection オブジェクトを取得します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public ReadOnly Property NotificationClasses As NotificationClassCollection
public NotificationClassCollection NotificationClasses { get; }
public:
property NotificationClassCollection^ NotificationClasses {
NotificationClassCollection^ get ();
}
/** @property */
public NotificationClassCollection get_NotificationClasses ()
public function get NotificationClasses () : NotificationClassCollection
プロパティ値
NotificationClassCollection オブジェクトです。
解説
アプリケーションは、0 個以上の通知クラスを実装できます。アプリケーションに通知クラスを実装しないことも可能ですが、1 つ以上の通知クラスを実装するのが普通です。
通知クラスは、アプリケーションが生成する通知を表します。通知クラスでは、通知のスキーマ、コンテンツ フォーマッタ、配信プロトコル、有効期限、および配信設定を定義します。
NotificationClass オブジェクトを追加または削除するには、NotificationClassCollection クラスのメソッドを使用します。
使用例
次の例は、このプロパティを使用してアプリケーションに通知クラスを追加する方法を示しています。
myApplication.NotificationClasses.Add(flightNotifications);
myApplication.NotificationClasses.Add(flightNotifications)
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
Application Class
Application Members
Microsoft.SqlServer.Management.Nmo Namespace