6 writes to IsPersistent
Aspire.Dashboard (1)
Model\ValidateTokenMiddleware.cs (1)
101new AuthenticationProperties { IsPersistent = true }).ConfigureAwait(false);
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (2)
DeviceBoundSessionHandler.cs (2)
153IsPersistent = true, 258IsPersistent = true,
Microsoft.AspNetCore.Identity (3)
SignInManager.cs (3)
243=> SignInAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, authenticationMethod); 272=> SignInWithClaimsAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, additionalClaims); 775new AuthenticationProperties { IsPersistent = true });
6 references to IsPersistent
Microsoft.AspNetCore.Authentication.Cookies (2)
CookieAuthenticationHandler.cs (2)
276if (properties.IsPersistent && _refreshExpiresUtc.HasValue) 330if (signInContext.Properties.IsPersistent)
Microsoft.AspNetCore.Identity (4)
SignInManager.cs (4)
202return (false, auth.Properties?.IsPersistent); 210return (false, auth.Properties?.IsPersistent); 231return (true, auth.Properties?.IsPersistent); 299_metrics?.SignInUserPrincipal(typeof(TUser).FullName!, AuthenticationScheme, authenticationProperties.IsPersistent);