4,815 questions
See the official documentation.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have requiment to use Windows Authentication with one of our readymade app which is currently using Cookie Authentication
services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
.AddCookie(CookieAuthenticationDefaults.AuthenticationScheme, config =>
{
config.Cookie.Name = "TanfeethUserLoginCookie";
config.LoginPath = "/Account/Login";
config.LogoutPath = "/Account/Logout";
config.AccessDeniedPath = "/Account/Access Denied";
});
I am willing to change it to Windows Authentication? is there any sample code available so, that I can follow?
See the official documentation.