4 writes to IsPersistent
Aspire.Dashboard (1)
Model\ValidateTokenMiddleware.cs (1)
101new AuthenticationProperties { IsPersistent = true }).ConfigureAwait(false);
Microsoft.AspNetCore.Identity (3)
SignInManager.cs (3)
239=> SignInAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, authenticationMethod); 268=> SignInWithClaimsAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, additionalClaims); 771new AuthenticationProperties { IsPersistent = true });
6 references to IsPersistent
Microsoft.AspNetCore.Authentication.Cookies (2)
CookieAuthenticationHandler.cs (2)
275if (properties.IsPersistent && _refreshExpiresUtc.HasValue) 329if (signInContext.Properties.IsPersistent)
Microsoft.AspNetCore.Identity (4)
SignInManager.cs (4)
198return (false, auth.Properties?.IsPersistent); 206return (false, auth.Properties?.IsPersistent); 227return (true, auth.Properties?.IsPersistent ?? false); 295_metrics?.SignInUserPrincipal(typeof(TUser).FullName!, AuthenticationScheme, authenticationProperties.IsPersistent);