1 write to Principal
Microsoft.AspNetCore.Authentication (1)
Events\TicketReceivedContext.cs (1)
26
=>
Principal
= ticket?.Principal;
3 references to Principal
Microsoft.AspNetCore.Authentication (3)
Events\RemoteAuthenticationContext.cs (2)
40
/// Calls success creating a ticket with the <see cref="
Principal
"/> and <see cref="Properties"/>.
42
public void Success() => Result = HandleRequestResult.Success(new AuthenticationTicket(
Principal
!, Properties, Scheme.Name));
RemoteAuthenticationHandler.cs (1)
172
await Context.SignInAsync(SignInScheme, ticketContext.
Principal
!, ticketContext.Properties);