次の方法で共有


NotificationClassProtocol.FailuresBeforeEventLog Property

連続して発生する作業項目配信エラーの許容数を取得または設定します。この数を超えると、アプリケーション イベント ログにエラーがレポートされます。

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

構文

'宣言
Public Property FailuresBeforeEventLog As Integer
public int FailuresBeforeEventLog { get; set; }
public:
property int FailuresBeforeEventLog {
    int get ();
    void set (int value);
}
/** @property */
public int get_FailuresBeforeEventLog ()

/** @property */
public void set_FailuresBeforeEventLog (int value)
public function get FailuresBeforeEventLog () : int

public function set FailuresBeforeEventLog (value : int)

プロパティ値

エラー数を示す Int32 値です。この数を超えると、アプリケーション イベント ログにイベントが記録されます。

解説

このプロパティは省略可能で、既定値は 1 です。

FailuresBeforeEventLog プロパティと FailureEventLogInterval を組み合わせて使用すると、アプリケーションのニーズに応じて、メッセージが過度にアプリケーション イベント ログに記録されないようにエラーのログ記録を構成できます。

使用例

次の例は、配信プロトコルの実行設定を定義する方法を示しています。

smtpProtocol.FailuresBeforeEventLog = 2;
smtpProtocol.FailureEventLogInterval = new TimeSpan(0, 10, 0);
smtpProtocol.FailuresBeforeAbort = 10;
smtpProtocol.MulticastRecipientLimit = 50;
smtpProtocol.WorkItemTimeout = new TimeSpan(0, 20, 0);
smtpProtocol.FailuresBeforeEventLog = 2
smtpProtocol.FailureEventLogInterval = New TimeSpan(0, 10, 0)
smtpProtocol.FailuresBeforeAbort = 10
smtpProtocol.MulticastRecipientLimit = 50
smtpProtocol.WorkItemTimeout = New TimeSpan(0, 20, 0)

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

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

対象プラットフォーム

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

参照

関連項目

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

その他の技術情報

FailuresBeforeLoggingEvent 要素 (ADF)
配信プロトコルの実行設定の指定
配信プロトコルの構成