10 writes to LogoutPath
Microsoft.AspNetCore.Authentication.Cookies (1)
PostConfigureCookieAuthenticationOptions.cs (1)
56
options.
LogoutPath
= CookieAuthenticationDefaults.LogoutPath;
Microsoft.AspNetCore.Authentication.Test (3)
CookieTests.cs (3)
71
using var host = await CreateHost(o => o.
LogoutPath
= "/signout");
1406
.ConfigureServices(services => services.AddAuthentication().AddCookie(o => o.
LogoutPath
= new PathString("/logout"))))
1428
.ConfigureServices(services => services.AddAuthentication().AddCookie(o => o.
LogoutPath
= new PathString("/logout"))))
Microsoft.AspNetCore.Identity.UI (1)
IdentityDefaultUIConfigureOptions.cs (1)
56
options.
LogoutPath
= $"/{IdentityUIDefaultAreaName}/Account/Logout";
SecurityWebSite (5)
Startup.cs (1)
20
options.
LogoutPath
= "/Home/Logout";
StartupWithGlobalDenyAnonymousFilter.cs (1)
19
options.
LogoutPath
= "/Home/Logout";
StartupWithGlobalDenyAnonymousFilterWithUseMvc.cs (1)
19
options.
LogoutPath
= "/Home/Logout";
StartupWithRequireAuth.cs (1)
20
options.
LogoutPath
= "/Home/Logout";
StartupWithUseMvc.cs (1)
20
options.
LogoutPath
= "/Home/Logout";
3 references to LogoutPath
Microsoft.AspNetCore.Authentication.Cookies (3)
CookieAuthenticationHandler.cs (2)
410
var shouldHonorReturnUrlParameter = Options.
LogoutPath
.HasValue && OriginalPath == Options.
LogoutPath
;
PostConfigureCookieAuthenticationOptions.cs (1)
54
if (!options.
LogoutPath
.HasValue)