HttpContext.Current.Request.IsAuthenticated和HttpContext.Current.User.Identity.IsAuthenticated之间有什么区别?
你会在哪种情况下使用哪一个?
答案 0 :(得分:47)
绝对没有区别。 Checkout HttpContext.Current.Request.IsAuthenticated implementation:
public bool IsAuthenticated
{
get
{
return (((this._context.User != null) &&
(this._context.User.Identity != null)) &&
this._context.User.Identity.IsAuthenticated);
}
}