22 references to AuthenticationProperties
Aspire.Dashboard (1)
Model\ValidateTokenMiddleware.cs (1)
101new AuthenticationProperties { IsPersistent = true }).ConfigureAwait(false);
Keycloak.Web (2)
LoginLogoutEndpointRouteBuilderExtensions.cs (2)
13group.MapGet("/login", () => TypedResults.Challenge(new AuthenticationProperties { RedirectUri = "/" })) 16group.MapPost("/logout", () => TypedResults.SignOut(new AuthenticationProperties { RedirectUri = "/" },
Microsoft.AspNetCore.Authentication (7)
AuthenticationHandler.cs (2)
315properties ??= new AuthenticationProperties(); 330properties ??= new AuthenticationProperties();
Events\PropertiesContext.cs (1)
23Properties = properties ?? new AuthenticationProperties();
Events\RemoteAuthenticationContext.cs (1)
27=> Properties = properties ?? new AuthenticationProperties();
Events\ResultContext.cs (1)
37_properties ??= new AuthenticationProperties();
SignInAuthenticationHandler.cs (1)
43: HandleSignInAsync(user, properties ?? new AuthenticationProperties());
SignOutAuthenticationHandler.cs (1)
42: HandleSignOutAsync(properties ?? new AuthenticationProperties());
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationTicket.cs (1)
25Properties = properties ?? new AuthenticationProperties();
Microsoft.AspNetCore.Authentication.BearerToken (2)
BearerTokenHandler.cs (2)
68properties ??= new(); 108var refreshProperties = new AuthenticationProperties
Microsoft.AspNetCore.Authentication.Cookies (3)
CookieAuthenticationHandler.cs (3)
141var newProperties = new AuthenticationProperties(); 295properties = properties ?? new AuthenticationProperties(); 383properties = properties ?? new AuthenticationProperties();
Microsoft.AspNetCore.Identity (6)
SignInManager.cs (6)
239=> SignInAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, authenticationMethod); 268=> SignInWithClaimsAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, additionalClaims); 287authenticationProperties ??= new AuthenticationProperties(); 701var props = new AuthenticationProperties(); 771new AuthenticationProperties { IsPersistent = true }); 1162var properties = new AuthenticationProperties { RedirectUri = redirectUrl };