AuditLevel 列挙型

定義

セキュリティ イベントをいつ監査するかを指定します。

public enum class AuditLevel
public enum AuditLevel
type AuditLevel = 
Public Enum AuditLevel
継承
AuditLevel

フィールド

Failure 2

失敗したセキュリティ関連イベントだけが記録されます。

None 0

イベントは記録されません。 これは既定値です。

Success 1

成功したセキュリティ関連イベントだけが記録されます。

SuccessOrFailure 3

失敗したセキュリティ関連イベントと成功したセキュリティ関連イベントの両方が記録されます。

次の例では、MessageAuthenticationAuditLevel プロパティと ServiceAuthorizationAuditLevel プロパティを AuditLevel 値のいずれかに設定します。

public static void Main()
{
    // Get base address from appsettings in configuration.
    Uri baseAddress = new Uri(ConfigurationManager.
        AppSettings["baseAddress"]);

    // Create a ServiceHost for the CalculatorService type
    // and provide the base address.
    using (ServiceHost serviceHost = new
        ServiceHost(typeof(CalculatorService), baseAddress))
    {
        // Create a new auditing behavior and set the log location.
        ServiceSecurityAuditBehavior newAudit =
            new ServiceSecurityAuditBehavior();
        newAudit.AuditLogLocation =
            AuditLogLocation.Application;
        newAudit.MessageAuthenticationAuditLevel =
            AuditLevel.SuccessOrFailure;
        newAudit.ServiceAuthorizationAuditLevel =
            AuditLevel.SuccessOrFailure;
        newAudit.SuppressAuditFailure = false;
        // Remove the old behavior and add the new.
        serviceHost.Description.
            Behaviors.Remove<ServiceSecurityAuditBehavior>();
        serviceHost.Description.Behaviors.Add(newAudit);
        // Open the ServiceHostBase to create listeners
        // and start listening for messages.
        serviceHost.Open();

        // The service can now be accessed.
        Console.WriteLine("The service is ready.");
        Console.WriteLine("Press <ENTER> to terminate service.");
        Console.WriteLine();
        Console.ReadLine();

        // Close the ServiceHostBase to shutdown the service.
        serviceHost.Close();
    }
}
Public Shared Sub Main() 
    ' Get base address from appsettings in configuration.
    Dim baseAddress As New Uri(ConfigurationManager.AppSettings("baseAddress"))
    
    ' Create a ServiceHost for the CalculatorService type 
    ' and provide the base address.
    Dim serviceHost As New ServiceHost(GetType(CalculatorService), baseAddress)
    Try
        ' Create a new auditing behavior and set the log location.
        Dim newAudit As New ServiceSecurityAuditBehavior()
        newAudit.AuditLogLocation = AuditLogLocation.Application
        newAudit.MessageAuthenticationAuditLevel = _
            AuditLevel.SuccessOrFailure
        newAudit.ServiceAuthorizationAuditLevel = _
            AuditLevel.SuccessOrFailure
        newAudit.SuppressAuditFailure = False
        ' Remove the old behavior and add the new.
        serviceHost.Description.Behaviors.Remove(Of ServiceSecurityAuditBehavior)
        serviceHost.Description.Behaviors.Add(newAudit)
        ' Open the ServiceHostBase to create listeners 
        ' and start listening for messages.
        serviceHost.Open()
        
        ' The service can now be accessed.
        Console.WriteLine("The service is ready.")
        Console.WriteLine("Press <ENTER> to terminate service.")
        Console.WriteLine()
        Console.ReadLine()
        
        ' Close the ServiceHostBase to shutdown the service.
        serviceHost.Close()
    Finally
    End Try

End Sub

注釈

呼び出し元の認証または承認を必要とするWindows Communication Foundation (WCF) アプリケーションを作成する場合は、成功、失敗、またはその両方について、セキュリティに関連するイベントを記録するように指定できます。 監査レベルは、この列挙体によって決定されます。

監査ログの場所は、AuditLogLocation クラスの ServiceSecurityAuditBehavior プロパティを AuditLogLocation 値のいずれかに設定することで指定されます。

監査の詳細については、「 監査」を参照してください。

serviceSecurityAudit バインドを使用して監査動作を<指定することもできます。>

適用対象

こちらもご覧ください