它总是说HttpContext不包含GetOwinContext()的定义,我尝试下载.net核心owin但我不知道如何实现相同的
功能.
下面的
代码可以在asp.net 5中编译.
private IAuthenticationManager AuthenticationManager
{
get
{
return HttpContext.GetOwinContext().Authentication;
}
}
Asp.Net核心没有GetOwinContext().请改用HttpContext.Authentication.
原文链接:https://www.f2er.com/csharp/100394.html