Как я могу обновить Cook ie Время истечения при входе с кодом ниже
var result = await _signInManager.PasswordSignInAsync(userName, password, isPersistent, lockoutOnFailure);
Like можно использовать с SingInAsyn
var authProps = new AuthenticationProperties
{
IsPersistent = isPersistent,
ExpiresUtc = DateTimeOffset.UtcNow.AddMinutes(5)
};
await _signInManager.SignInAsync(user, authProps, authenticationMethod);