gpt4 book ai didi

c# - 在 ASP.NET MVC 5 中即时更改 session 超时

转载 作者:太空宇宙 更新时间:2023-11-03 10:38:34 26 4
gpt4 key购买 nike

<分区>

有没有办法在 ASP.NET MVC 5 中全局更改 Session Timeout 而无需重新启动应用程序?

我知道我们可以做到

public void ConfigureAuth(IAppBuilder app)
{
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
ExpireTimeSpan = TimeSpan.FromMinutes(10),
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/Account/Login"),
CookieName = ".MyApp1_Authentication",
SlidingExpiration = true
});
}

但是有没有办法在应用程序的其他地方做到这一点?谢谢!

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com