GetOwinContext 在 asp.net 核心中不工作
GetOwinContext is not working in asp.net core
总是说HttpContext not include the define of GetOwinContext(),我尝试下载.net core owin但我不知道如何实现相同的功能。
下面的代码可以在 asp.net 5 .
中编译
private IAuthenticationManager AuthenticationManager
{
get
{
return HttpContext.GetOwinContext().Authentication;
}
}
Asp.Net 核心没有 GetOwinContext()
。请改用 HttpContext.Authentication
。
总是说HttpContext not include the define of GetOwinContext(),我尝试下载.net core owin但我不知道如何实现相同的功能。 下面的代码可以在 asp.net 5 .
中编译private IAuthenticationManager AuthenticationManager
{
get
{
return HttpContext.GetOwinContext().Authentication;
}
}
Asp.Net 核心没有 GetOwinContext()
。请改用 HttpContext.Authentication
。