4 writes to IsPersistent
Aspire.Dashboard (1)
Model\ValidateTokenMiddleware.cs (1)
101
new 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);
771
new AuthenticationProperties {
IsPersistent
= true });
6 references to IsPersistent
Microsoft.AspNetCore.Authentication.Cookies (2)
CookieAuthenticationHandler.cs (2)
275
if (properties.
IsPersistent
&& _refreshExpiresUtc.HasValue)
329
if (signInContext.Properties.
IsPersistent
)
Microsoft.AspNetCore.Identity (4)
SignInManager.cs (4)
198
return (false, auth.Properties?.
IsPersistent
);
206
return (false, auth.Properties?.
IsPersistent
);
227
return (true, auth.Properties?.
IsPersistent
?? false);
295
_metrics?.SignInUserPrincipal(typeof(TUser).FullName!, AuthenticationScheme, authenticationProperties.
IsPersistent
);