Implemented interface member:
2 overrides of Name
System.Security.Claims (1)
System\Security\Claims\GenericIdentity.cs (1)
58public override string Name
System.Security.Principal.Windows (1)
System\Security\Principal\WindowsIdentity.cs (1)
567public override string Name
13 references to Name
Microsoft.AspNetCore.Antiforgery (2)
Internal\DefaultAntiforgeryTokenGenerator.cs (2)
70requestToken.Username = authenticatedIdentity.Name; 156currentUsername = authenticatedIdentity.Name ?? string.Empty;
Microsoft.AspNetCore.Authorization (1)
NameAuthorizationRequirement.cs (1)
46if (string.Equals(identity.Name, requirement.RequiredName, StringComparison.Ordinal))
Microsoft.AspNetCore.Components.Authorization (1)
AuthenticationStateData.cs (1)
19/// Gets the value that identifies 'Name' claims. This is used when returning the property <see cref="ClaimsIdentity.Name"/>.
System.Security.Claims (9)
System\Security\Claims\ClaimsIdentity.cs (9)
63/// <param name="identity"><see cref="IIdentity"/> supplies the <see cref="Name"/> and <see cref="AuthenticationType"/>.</param> 105/// <param name="identity"><see cref="IIdentity"/> supplies the <see cref="Name"/> and <see cref="AuthenticationType"/>.</param> 117/// <param name="nameType">The <see cref="Claim.Type"/> used when obtaining the value of <see cref="ClaimsIdentity.Name"/>.</param> 130/// <param name="nameType">The <see cref="Claim.Type"/> used when obtaining the value of <see cref="ClaimsIdentity.Name"/>.</param> 141/// <param name="identity"><see cref="IIdentity"/> supplies the <see cref="Name"/> and <see cref="AuthenticationType"/>.</param> 144/// <param name="nameType">The <see cref="Claim.Type"/> used when obtaining the value of <see cref="ClaimsIdentity.Name"/>.</param> 438/// Gets the value that identifies 'Name' claims. This is used when returning the property <see cref="ClaimsIdentity.Name"/>. 1020if (Name != null) 1026debugText += $", Name = {Name}";