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