5 references to CookieAuthenticationHandler
Microsoft.AspNetCore.Authentication.Cookies (3)
CookieAuthenticationHandler.cs (2)
37
/// Initializes a new instance of <see cref="
CookieAuthenticationHandler
"/>.
49
/// Initializes a new instance of <see cref="
CookieAuthenticationHandler
"/>.
CookieExtensions.cs (1)
81
return builder.AddScheme<CookieAuthenticationOptions,
CookieAuthenticationHandler
>(authenticationScheme, displayName, configureOptions);
Microsoft.AspNetCore.Authentication.Test (1)
CookieTests.cs (1)
28
protected override Type HandlerType => typeof(
CookieAuthenticationHandler
);
Microsoft.AspNetCore.Identity.Test (1)
SignInManagerTest.cs (1)
1350
private static AuthenticationScheme CreateCookieScheme(string name) => new(IdentityConstants.ApplicationScheme, displayName: null, typeof(
CookieAuthenticationHandler
));