15 references to AuthenticationScheme
Aspire.Dashboard (8)
DashboardEndpointsBuilder.cs (2)
41CookieAuthenticationDefaults.AuthenticationScheme).ConfigureAwait(false); 54endpoints.MapPost("/authentication/logout", () => TypedResults.SignOut(authenticationSchemes: [CookieAuthenticationDefaults.AuthenticationScheme, OpenIdConnectDefaults.AuthenticationScheme])).SkipStatusCodePages();
DashboardWebApplication.cs (4)
792o.ForwardDefault = CookieAuthenticationDefaults.AuthenticationScheme; 806options.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 841o.ForwardDefault = CookieAuthenticationDefaults.AuthenticationScheme; 920_ => CookieAuthenticationDefaults.AuthenticationScheme
Model\ValidateTokenMiddleware.cs (2)
95authenticationType: CookieAuthenticationDefaults.AuthenticationScheme); 99CookieAuthenticationDefaults.AuthenticationScheme,
Keycloak.Web (3)
LoginLogoutEndpointRouteBuilderExtensions.cs (1)
17[CookieAuthenticationDefaults.AuthenticationScheme, OpenIdConnectDefaults.AuthenticationScheme]));
Program.cs (2)
41options.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 43.AddCookie(CookieAuthenticationDefaults.AuthenticationScheme);
Microsoft.AspNetCore.Authentication.Cookies (4)
CookieExtensions.cs (4)
18/// The default scheme is specified by <see cref="CookieAuthenticationDefaults.AuthenticationScheme"/>. 26=> builder.AddCookie(CookieAuthenticationDefaults.AuthenticationScheme); 42/// The default scheme is specified by <see cref="CookieAuthenticationDefaults.AuthenticationScheme"/>. 51=> builder.AddCookie(CookieAuthenticationDefaults.AuthenticationScheme, configureOptions);