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); } }