ServiceSecurityAuditBehavior.ServiceAuthorizationAuditLevel Property

Definition

Gets or sets the type of authorization events to audit at the service level.

public System.ServiceModel.AuditLevel ServiceAuthorizationAuditLevel { get; set; }

Property Value

One of the AuditLevel enumeration values. The default is None.

Exceptions

set and value are not valid members of AuditLevel. The default is None.

Examples

The following code creates an instance of the ServiceSecurityAuditBehavior class and sets this property.

// 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;

Remarks

Windows Communication Foundation (WCF) service applications have two levels where security can be enforced. At the service level, all methods of the service are enforced by the same security policy. Individual methods in the service can have a different (more stringent) security policy. Use the ServiceAuthorizationAuditLevel property to control which service level events are audited.

You can also set this value using the <serviceSecurityAudit> in a client application configuration file.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1