6 writes to IsPersistent
Aspire.Dashboard (1)
Model\ValidateTokenMiddleware.cs (1)
104new AuthenticationProperties { IsPersistent = true }).ConfigureAwait(false);
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (2)
DeviceBoundSessionHandler.cs (2)
153IsPersistent = true, 258IsPersistent = true,
Microsoft.AspNetCore.Identity (3)
SignInManager.cs (3)
248=> SignInAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, authenticationMethod); 277=> SignInWithClaimsAsync(user, new AuthenticationProperties { IsPersistent = isPersistent }, additionalClaims); 969new 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)
207return (false, auth.Properties?.IsPersistent); 215return (false, auth.Properties?.IsPersistent); 236return (true, auth.Properties?.IsPersistent); 304_metrics?.SignInUserPrincipal(typeof(TUser).FullName!, AuthenticationScheme, authenticationProperties.IsPersistent);