微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net – 缺少AuthenticationManager引用

跟进 this问题后,缺少SignOut()和SignIn()方法的引用:
private async Task SignInAsync(User user,bool isPersistent)
{
    AuthenticationManager.SignOut(DefaultAuthenticationTypes.ExternalCookie);
    var identity = await UserManager.CreateIdentityAsync(user,DefaultAuthenticationTypes.ApplicationCookie);
    AuthenticationManager.SignIn(new AuthenticationProperties() { IsPersistent = isPersistent },identity);
}

有人知道如何解决它吗?

解决方法

您是如何定义AuthenticationManager属性的?通常它应该如下所示:
private IAuthenticationManager AuthenticationManager
{
  get
  {
    return HttpContext.GetowinContext().Authentication;
  }
}

有了它,您应该能够调用SignOut和SignIn方法.

原文地址:https://www.jb51.cc/aspnet/245733.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐