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