private IAuthenticationManager AuthenticationManager
{
    get
    {
        return HttpContext.GetOwinContext().Authentication;
    }
}

我得到错误:



有什么问题吗?

最佳答案

看来您缺少名为“Microsoft.Owin.Host.SystemWeb”的NuGet程序包。从NuGet安装软件包或使用软件包管理器控制台安装软件包。

安装包Microsoft.Owin.Host.SystemWeb

希望这可以帮助。

关于asp.net-mvc - 'System.Web.HttpContextBase'不包含 'GetOwinContext'的定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26200043/

10-13 00:33