次の方法で共有


NotificationClassProtocol Constructor ()

NotificationClassProtocol クラスの新しいインスタンスを初期化します。

名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)

構文

'宣言
Public Sub New
public NotificationClassProtocol ()
public:
NotificationClassProtocol ()
public NotificationClassProtocol ()
public function NotificationClassProtocol ()

解説

更新されたテキスト :2005 年 12 月 5 日

更新されたサンプル コード :2005 年 12 月 5 日

既定のコンストラクタを使用する場合は、直ちに Name プロパティを設定してから、Parent プロパティを設定する必要があります。FailuresBeforeEventLog プロパティ、FailureEventLogInterval プロパティ、FailuresBeforeAbort プロパティ、MulticastRecipientLimit プロパティ、および WorkItemTimeout プロパティも設定する必要があります。これらのプロパティの既定値については、他の NotificationClassProtocol(NotificationClass,String) コンストラクタを参照してください。

使用例

次の例は、この既定のコンストラクタを使用して通知クラスの配信プロトコルを定義する方法を示しています。

// Define a protocol for notification delivery and set properties.
NotificationClassProtocol fileProtocol = 
    new NotificationClassProtocol();
fileProtocol.Name = "File";
fileProtocol.Parent = flightNotifications;
fileProtocol.FailuresBeforeEventLog = 1;
fileProtocol.FailureEventLogInterval = new TimeSpan(0, 0, 0);
fileProtocol.FailuresBeforeAbort = 20;
fileProtocol.MulticastRecipientLimit = 100;
fileProtocol.WorkItemTimeout = new TimeSpan(0, 15, 0);
' Define a protocol for notification delivery and set properties.
Dim fileProtocol As NotificationClassProtocol = _
    New NotificationClassProtocol()
fileProtocol.Name = "File"
fileProtocol.Parent = flightNotifications
fileProtocol.FailuresBeforeEventLog = 1
fileProtocol.FailureEventLogInterval = New TimeSpan(0, 0, 0)
fileProtocol.FailuresBeforeAbort = 20
fileProtocol.MulticastRecipientLimit = 100
fileProtocol.WorkItemTimeout = New TimeSpan(0, 15, 0)

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

NotificationClassProtocol Class
NotificationClassProtocol Members
Microsoft.SqlServer.Management.Nmo Namespace