ServiceSecurityAuditBehavior.SuppressAuditFailure Property
Gets or sets a value that indicates whether failure to audit affects the application.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
If this property is false, failure to audit causes an exception to be thrown and results in user request failure.
You can also set this value using the <serviceSecurityAudit> element in a client application configuration file.
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; newAudit.SuppressAuditFailure = false;
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.