24 references to AuditBehavior
System.ServiceModel (24)
System\ServiceModel\Channels\ConnectionOrientedTransportChannelListener.cs (1)
233get { return base.AuditBehavior; }
System\ServiceModel\Channels\HttpChannelListener.cs (9)
520if (AuditLevel.Failure == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Failure)) 527if (AuditLevel.Success == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Success)) 579if (AuditLevel.Failure == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Failure)) 588if (AuditLevel.Success == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Success)) 621SecurityAuditHelper.WriteTransportAuthenticationSuccessEvent(this.AuditBehavior.AuditLogLocation, 622this.AuditBehavior.SuppressAuditFailure, null, this.Uri, primaryIdentity); 626SecurityAuditHelper.WriteTransportAuthenticationFailureEvent(this.AuditBehavior.AuditLogLocation, 627this.AuditBehavior.SuppressAuditFailure, null, this.Uri, primaryIdentity, exception); 670if (AuditLevel.Failure == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Failure))
System\ServiceModel\Channels\HttpsChannelListener.cs (6)
218if (AuditLevel.Failure == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Failure)) 225if (AuditLevel.Success == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Success)) 279if (AuditLevel.Failure == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Failure)) 286if (AuditLevel.Success == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Success)) 335if (result != HttpStatusCode.OK && (AuditLevel.Failure == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Failure))) 383if (result != HttpStatusCode.OK && (AuditLevel.Failure == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Failure)))
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (6)
232if (AuditLevel.Failure == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Failure)) 239if (result != null && AuditLevel.Success == (this.AuditBehavior.MessageAuthenticationAuditLevel & AuditLevel.Success)) 261SecurityAuditHelper.WriteTransportAuthenticationSuccessEvent(this.AuditBehavior.AuditLogLocation, 262this.AuditBehavior.SuppressAuditFailure, null, this.Uri, primaryIdentity); 266SecurityAuditHelper.WriteTransportAuthenticationFailureEvent(this.AuditBehavior.AuditLogLocation, 267this.AuditBehavior.SuppressAuditFailure, null, this.Uri, primaryIdentity, exception);
System\ServiceModel\Channels\SessionConnectionReader.cs (2)
623if ((this.channelListener.AuditBehavior.MessageAuthenticationAuditLevel & auditLevel) != auditLevel) 640ServiceSecurityAuditBehavior auditBehavior = this.channelListener.AuditBehavior;