1 write to AuthenticationScheme
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationTicket.cs (1)
23AuthenticationScheme = authenticationScheme;
5 references to AuthenticationScheme
Microsoft.AspNetCore.Authentication (1)
TicketSerializer.cs (1)
59writer.Write(ticket.AuthenticationScheme);
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationTicket.cs (1)
66return new AuthenticationTicket(principal, Properties.Clone(), AuthenticationScheme);
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationHandler.cs (1)
147return new AuthenticationTicket(newPrincipal, newProperties, ticket.AuthenticationScheme);
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationService.cs (1)
95return AuthenticateResult.Success(new AuthenticationTicket(principal, result.Properties, result.Ticket!.AuthenticationScheme));
Microsoft.AspNetCore.Authentication.Test (1)
TicketSerializerTests.cs (1)
28Assert.Equal("Hello", readTicket.AuthenticationScheme);