- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码:
public void ConfigureAuth(IAppBuilder app)
{
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
ExpireTimeSpan = System.TimeSpan.FromMinutes(1),
LoginPath = new PathString("/Account/Login"),
LogoutPath = new PathString("/Account/LogOff")
});
最佳答案
它确实会过期。
确保您没有任何后台 ajax 事件,因为它扩展了 session (SlidingExpiration
默认为 true)。
此外,我必须在更改后手动删除旧 cookie ExpireTimeSpan
来自 the default 14 days到一个较小的值。
关于authentication - CookieAuthenticationOptions,ExpireTimeSpan 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20226016/
我有以下代码: public void ConfigureAuth(IAppBuilder app) { app.UseCookieAuthentication(new
在我的应用程序的 Asp.Net Identity Auth 中间件设置中,我有 app.UseCookieAuthentication(new CookieAuthenticationOptions
我的 MVC 6 ASP.NET 5 项目中有以下设置: 配置方法中的Startup.cs: app.UseCookieAuthentication(options => { options.
我正在使用 1.0.1 版本的 asp.net core 并且在我的表单中使用身份验证。 我使用 UseCookieAuthentication 并给出错误 Cannot convert lambda
在 HttpContext.SignInAsync 和 Microsoft.AspNetCore.Authentication.Cookies 中传递给 Microsoft.AspNetCore.Au
我正在使用 OWIN 中间件进行 cookie 身份验证和 openIdConnect。在我将 openIdConnect 身份验证添加到我的启动身份验证代码和 cookie 身份验证选项之前,Log
在 ASP.NET Core 2.1 中,谁能解释一下 CookieAuthenticationOptions.LogoutPath 的作用?每the documentation它说: If the
我在 .NET MVC 4.5 设置中使用 OWIN 的 cookie 身份验证。我在 Startup.Auth.cs (下面的代码)中设置了 cookie 身份验证配置,并且我想访问我在 Contr
我是一名优秀的程序员,十分优秀!