ServiceSecurityAuditBehavior.AuditLogLocation プロパティ

定義

セキュリティ関連のイベント ログが書き込まれる場所を取得または設定します。

public:
 property System::ServiceModel::AuditLogLocation AuditLogLocation { System::ServiceModel::AuditLogLocation get(); void set(System::ServiceModel::AuditLogLocation value); };
public System.ServiceModel.AuditLogLocation AuditLogLocation { get; set; }
member this.AuditLogLocation : System.ServiceModel.AuditLogLocation with get, set
Public Property AuditLogLocation As AuditLogLocation

プロパティ値

AuditLogLocation。 既定値は Default です。

例外

set および valueAuditLogLocation の有効なメンバーではありません。

ServiceSecurityAuditBehavior クラスのインスタンスを作成し、このプロパティを設定するコードを次に示します。

// Create a new auditing behavior and set the log location.
ServiceSecurityAuditBehavior newAudit =
    new ServiceSecurityAuditBehavior();
newAudit.AuditLogLocation =
    AuditLogLocation.Application;
' Create a new auditing behavior and set the log location.
Dim newAudit As New ServiceSecurityAuditBehavior()
newAudit.AuditLogLocation = AuditLogLocation.Application

注釈

AuditLogLocation.Security への書き込みを行うには、実行中のスレッド (またはプロセス) が SeAuditPrivilege を持っている必要があります。

この値は、クライアント アプリケーション構成ファイルの <serviceSecurityAudit> を使用して設定することもできます。

適用対象