12 references to LogonUserIdentity
System.ServiceModel (12)
System\ServiceModel\Channels\HttpChannelListener.cs (11)
331if (authenticationContext.LogonUserIdentity != null) 333authType = authenticationContext.LogonUserIdentity.AuthenticationType; 493Fx.Assert(authenticationContext.LogonUserIdentity != null, "IsAuthenticated should only be called if authenticationContext.LogonUserIdentity != null"); 494return this.IsAuthenticationRequired || (this.IsAuthenticationSupported && authenticationContext.LogonUserIdentity.IsAuthenticated); 511retValue = this.ProcessAuthentication(authenticationContext.LogonUserIdentity, GetAuthType(authenticationContext)); 521WriteAuditEvent(AuditLevel.Failure, (authenticationContext.LogonUserIdentity != null) ? authenticationContext.LogonUserIdentity.Name : String.Empty, exception); 528WriteAuditEvent(AuditLevel.Success, (authenticationContext.LogonUserIdentity != null) ? authenticationContext.LogonUserIdentity.Name : String.Empty, null); 692authenticationContext.LogonUserIdentity != null && 693authenticationContext.LogonUserIdentity.IsAuthenticated &&
System\ServiceModel\Channels\HttpsChannelListener.cs (1)
186identity = authenticationContext.LogonUserIdentity;