1
我使用OWIN OAuth 2.0 Authorization Server sample作爲使用我們公司Active Directory創建自己的OAuth服務提供商的寺廟。OWIN OAuth 2.0授權服務器 - 路徑名稱空間
「下載示例代碼」不能正常工作,並在下面的代碼片段
// Enable the Application Sign In Cookie.
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = "Application",
AuthenticationMode = AuthenticationMode.Passive,
LoginPath = new PathString(Paths.LoginPath),
LogoutPath = new PathString(Paths.LogoutPath),
});
請問Paths
屬於哪個命名空間我找不到Paths
對象?