.netcore 2.2 Httpcontext没有SignInAsync

时间:2018-12-23 22:38:30

标签: asp.net .net asp.net-core .net-core

我想向我的应用程序添加身份验证。 有我的代码

TestReferenceLib

我在项目中添加了Microsoft.AspNetCore.Authentication.Abstractions。但是我不知道为什么上下文没有看到扩展方法SignInAsync。

1 个答案:

答案 0 :(得分:2)

SignInAsync是一种扩展方法,位于Microsoft.AspNetCore.Authentication.Abstractions中,位于Microsoft.AspNetCore.Authentication名称空间中。

对于您来说,看起来您只需要添加using语句:

using Microsoft.AspNetCore.Authentication;

这与ASP.NET Core标识和Microsoft.AspNetCore.Identity包是分开的。