我已经下载,并成功运行ASP。NET Identity示例: https://github.com/rustd/AspnetIdentitySample

我现在正在实现ASP。NET身份框架在我的项目中遇到了一个问题,这让我抓狂了一整天…

getowwincontext()在我的HttpContext上不存在作为扩展方法

我正在类库中实现身份框架。我已经安装了所有最新的(预发布版)Identity框架,除了这个,其他的一切都很好。

我已经尝试在我的控制器中实现与相同的直接相同的代码,并发现相同的问题。

我显然在某个地方遗漏了一个参考,虽然我不知道是什么..

让我抓狂的代码块是:

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

我已经添加了以下引用-在我的类库中尝试了这些,也直接在控制器上,它们都不适合我…

using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.Owin.Security;
using Microsoft.Owin;
using System.Web;

... 这让我抓狂....任何想法?

更新

我已经检查了样例中的Identity和OWIN版本,并确保在解决方案中有相同的版本。

更重要的是,如果我在样本上的对象浏览器中搜索getowwincontext,我可以找到方法,但是当我在解决方案中搜索它时,它无处可寻……我一定是有什么过期的图书馆,但我找不到!


当前回答

对于开发人员在Web API项目中得到这个错误-

getowwincontext扩展方法是在System.Web.Http.Owin dll中定义的,还需要一个包,即Microsoft.Owin.Host.SystemWeb。这个包需要从nuget安装到您的项目中。

链接到包:OWIN包安装命令-

Install-Package Microsoft.AspNet.WebApi.Owin    

链接到系统。web Package:软件包安装命令-

Install-Package Microsoft.Owin.Host.SystemWeb

为了解决这个错误,你需要找到它在你的情况下发生的原因。请交叉检查以下点在您的代码-

你必须引用Microsoft.AspNet.Identity.Owin; 使用Microsoft.AspNet.Identity.Owin; 在HttpContext下定义getowwincontext()。电流如下: return _userManager1HttpContext.Current.GetOwinContext () .GetUserManager < ApplicationUserManager > (); 或 返回_signInManagerHttpContext.Current.GetOwinContext () . get < ApplicationSignInManager > ();

使用getowwincontext()的完整代码-

 public ApplicationSignInManager SignInManager
 {
   get
   {
    return _signInManager ?? HttpContext.Current.GetOwinContext().Get<ApplicationSignInManager>();
   }
    private set
    {
     _signInManager = value;
    }
  }

命名空间的我在使用getowwincontext()的代码文件

using AngularJSAuthentication.API.Entities;
using AngularJSAuthentication.API.Models;
using HomeCinema.Common;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.Owin.Security.DataProtection;

在将代码从一个项目移动到另一个项目时,我得到了这个错误。

其他回答

只是用

HttpContext。当前GetOwinContext()。

对我来说很管用。

对于开发人员在Web API项目中得到这个错误-

getowwincontext扩展方法是在System.Web.Http.Owin dll中定义的,还需要一个包,即Microsoft.Owin.Host.SystemWeb。这个包需要从nuget安装到您的项目中。

链接到包:OWIN包安装命令-

Install-Package Microsoft.AspNet.WebApi.Owin    

链接到系统。web Package:软件包安装命令-

Install-Package Microsoft.Owin.Host.SystemWeb

为了解决这个错误,你需要找到它在你的情况下发生的原因。请交叉检查以下点在您的代码-

你必须引用Microsoft.AspNet.Identity.Owin; 使用Microsoft.AspNet.Identity.Owin; 在HttpContext下定义getowwincontext()。电流如下: return _userManager1HttpContext.Current.GetOwinContext () .GetUserManager < ApplicationUserManager > (); 或 返回_signInManagerHttpContext.Current.GetOwinContext () . get < ApplicationSignInManager > ();

使用getowwincontext()的完整代码-

 public ApplicationSignInManager SignInManager
 {
   get
   {
    return _signInManager ?? HttpContext.Current.GetOwinContext().Get<ApplicationSignInManager>();
   }
    private set
    {
     _signInManager = value;
    }
  }

命名空间的我在使用getowwincontext()的代码文件

using AngularJSAuthentication.API.Entities;
using AngularJSAuthentication.API.Models;
using HomeCinema.Common;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.Owin.Security.DataProtection;

在将代码从一个项目移动到另一个项目时,我得到了这个错误。

在API中获取UserManager

return HttpContext.Current.GetOwinContext().GetUserManager<AppUserManager>();

其中AppUserManager是继承自UserManager的类。

啊!

我找到了……我没有额外的软件包,叫做microsoft . owen . host . systemweb

一旦我搜索和安装这个,它工作。

现在-我不确定我是不是错过了一切,虽然发现没有参考这样的库或包时,通过各种教程。当我安装所有的身份框架时,它也没有安装…不知道是不是只有我…

编辑 虽然它在microsoft . owen . host . systemweb程序集中,但它是系统中的扩展方法。Web名称空间,因此您需要对前者有引用,并使用后者。

只要安装这个包,你的代码就可以工作了:=> 安装软件包Microsoft.Owin.Host.SystemWeb -Version 2.1.0