11 references to UserName
System.IdentityModel (5)
System\IdentityModel\Selectors\UserNameSecurityTokenAuthenticator.cs (1)
25
return ValidateUserNamePasswordCore(userNameToken.
UserName
, userNameToken.Password);
System\IdentityModel\Tokens\UserNameSecurityTokenHandler.cs (1)
211
usernameSecurityToken.
UserName
System\IdentityModel\Tokens\WindowsUserNameSecurityTokenHandler.cs (3)
73
string userName = usernameToken.
UserName
;
76
string[] strings = usernameToken.
UserName
.Split('\\');
115
windowsIdentity.BootstrapContext = new BootstrapContext(new UserNameSecurityToken(usernameToken.
UserName
, null), this);
System.ServiceModel (6)
System\ServiceModel\Channels\TransportSecurityHelpers.cs (2)
493
result = new NetworkCredential(token.
UserName
, token.Password);
588
this.credential = new NetworkCredential(token.
UserName
, token.Password);
System\ServiceModel\Security\SecurityUtils.cs (3)
1414
messageProperty.TransportToken = new SecurityTokenSpecification(new UserNameSecurityToken(token.
UserName
, null, token.Id), messageProperty.TransportToken.SecurityTokenPolicies);
1423
messageProperty.ProtectionToken = new SecurityTokenSpecification(new UserNameSecurityToken(token.
UserName
, null, token.Id), messageProperty.ProtectionToken.SecurityTokenPolicies);
1435
messageProperty.IncomingSupportingTokens[i] = new SupportingTokenSpecification(new UserNameSecurityToken(token.
UserName
, null, token.Id), supportingTokenSpecification.SecurityTokenPolicies, supportingTokenSpecification.SecurityTokenAttachmentMode, supportingTokenSpecification.SecurityTokenParameters);
System\ServiceModel\Security\WSSecurityJan2004.cs (1)
404
WriteUserNamePassword(writer, upToken.Id, upToken.
UserName
, upToken.Password);