在ASP身份中设置身份验证cookie的时间戳,以便会话不会过期

时间:2016-02-24 12:48:29

标签: asp.net session cookies

我在网络应用程序中设置cookie的时间戳时遇到了麻烦 会议结束快,我希望增加会议到期前的时间 我试图编辑Startup.Auth.cs文件,但我似乎没有任何影响。在这里,我现在看起来像。

app.UseCookieAuthentication(new CookieAuthenticationOptions
        {
            ExpireTimeSpan = TimeSpan.FromMinutes(600),
            AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
            LoginPath = new PathString("/Login.aspx"),
            Provider = new CookieAuthenticationProvider
            {
                OnValidateIdentity = SecurityStampValidator.OnValidateIdentity<ApplicationUserManager, ApplicationUser>(
                    validateInterval: TimeSpan.FromMinutes(600),
                    regenerateIdentity: (manager, user) => user.GenerateUserIdentityAsync(manager))
            }
        });

虽然我已经增加了在这里的时间,但我似乎没有工作。我不知道它是否被忽略了?会议在到期前约30分钟结束
你们中的任何一个人都有理想为什么时间限制如此之短?

0 个答案:

没有答案