asp.net – HttpContext.Current.Request.IsAuthenticated和HttpContext.Current.User.Identity.IsAuthenticated有什么区别?

前端之家收集整理的这篇文章主要介绍了asp.net – HttpContext.Current.Request.IsAuthenticated和HttpContext.Current.User.Identity.IsAuthenticated有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
HttpContext.Current.Request.IsAuthenticated和HttpContext.Current.User.Identity.IsAuthenticated有什么区别?

你会在哪种情况下使用哪一个?

解决方法

没有什么区别。检查HttpContext.Current.Request.IsAuthenticated实现:
public bool IsAuthenticated
{
    get
    {
        return (((this._context.User != null) && 
                 (this._context.User.Identity != null)) &&
                 this._context.User.Identity.IsAuthenticated);
    }
}
原文链接:https://www.f2er.com/aspnet/254251.html

猜你在找的asp.Net相关文章