10 writes to LogoutPath
Microsoft.AspNetCore.Authentication.Cookies (1)
PostConfigureCookieAuthenticationOptions.cs (1)
56options.LogoutPath = CookieAuthenticationDefaults.LogoutPath;
Microsoft.AspNetCore.Authentication.Test (3)
CookieTests.cs (3)
71using 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)
56options.LogoutPath = $"/{IdentityUIDefaultAreaName}/Account/Logout";
SecurityWebSite (5)
Startup.cs (1)
20options.LogoutPath = "/Home/Logout";
StartupWithGlobalDenyAnonymousFilter.cs (1)
19options.LogoutPath = "/Home/Logout";
StartupWithGlobalDenyAnonymousFilterWithUseMvc.cs (1)
19options.LogoutPath = "/Home/Logout";
StartupWithRequireAuth.cs (1)
20options.LogoutPath = "/Home/Logout";
StartupWithUseMvc.cs (1)
20options.LogoutPath = "/Home/Logout";
3 references to LogoutPath
Microsoft.AspNetCore.Authentication.Cookies (3)
CookieAuthenticationHandler.cs (2)
410var shouldHonorReturnUrlParameter = Options.LogoutPath.HasValue && OriginalPath == Options.LogoutPath;
PostConfigureCookieAuthenticationOptions.cs (1)
54if (!options.LogoutPath.HasValue)