Implemented interface member:
2 overrides of AuthenticationType
System.Security.Claims (1)
System\Security\Claims\GenericIdentity.cs (1)
66public override string AuthenticationType
System.Security.Principal.Windows (1)
System\Security\Principal\WindowsIdentity.cs (1)
377public sealed override unsafe string? AuthenticationType
10 references to AuthenticationType
Microsoft.AspNetCore.Authentication (1)
TicketSerializer.cs (1)
91var authenticationType = identity.AuthenticationType ?? string.Empty;
Microsoft.AspNetCore.Components.WebAssembly.Authentication (1)
Options\RemoteAuthenticationUserOptions.cs (1)
27/// Gets or sets the value to use for the <see cref="System.Security.Claims.ClaimsIdentity.AuthenticationType"/>.
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionContext.cs (2)
538if (!string.Equals(current.AuthenticationType, incoming.AuthenticationType, StringComparison.Ordinal)
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
139principal.Identities.Any(i => i.AuthenticationType == AuthenticationScheme);
Microsoft.AspNetCore.SignalR.Core (2)
HubConnectionHandler.cs (2)
267if (!string.Equals(current.AuthenticationType, incoming.AuthenticationType, StringComparison.Ordinal)
System.Security.Claims (3)
System\Security\Claims\ClaimsIdentity.cs (3)
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> 141/// <param name="identity"><see cref="IIdentity"/> supplies the <see cref="Name"/> and <see cref="AuthenticationType"/>.</param>