Ich habe den folgenden Code:CookieAuthenticationOptions, ExpireTimeSpan funktioniert nicht
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")
});
Aber Login-Sitzung aktiv mehr als 1 Minute. Außerdem wird LogoutPath nicht aufgerufen, wenn die Zeit abgelaufen ist. Warum?
korrekt, Einstellung ExpireTimeSpan funktioniert. – RickAndMSFT
Löschen der Cookies ist, was es getan hat. – bojingo
@Adas Petrovas Wo haben Sie diese Standardwerte gefunden? –