找不到IAuthenticationManager

时间:2015-08-06 07:24:44

标签: c# model-view-controller

我在MVC应用程序中收到此错误

  

找不到类型或命名空间名称“IAuthenticationManager”   (您是否缺少using指令或程序集引用?)

以下是我收到错误的代码

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

1 个答案:

答案 0 :(得分:1)

添加对链接中显示的此DLL的引用:

https://msdn.microsoft.com/en-us/library/microsoft.owin.security.iauthenticationmanager(v=vs.113).aspx

它来自程序集 Microsoft.Owin.dll

  
      
  1. 如果您通过Nuget
  2. 安装,请检查您的Nuget包参考   
  3. 如果没有,请通过Nuget包安装以获取程序集引用。包名称 - Microsoft.Owin
  4.