Вы используете Asp. net Core Identity, поэтому внутри билета аутентификации в .AspNetCore.Identity.Application
cook ie вы можете попытаться удалить cook ie по заданной схеме c:
await HttpContext.SignOutAsync(IdentityConstants.ApplicationScheme);
Но лучше использовать SignInManager.SignOutAsync()
, который удалит ниже файлы cookie:
await Context.SignOutAsync(IdentityConstants.ApplicationScheme);
await Context.SignOutAsync(IdentityConstants.ExternalScheme);
await Context.SignOutAsync(IdentityConstants.TwoFactorUserIdScheme);