代码之家  ›  专栏  ›  技术社区  ›  Carra

可能的NullReferenceException

  •  4
  • Carra  · 技术社区  · 15 年前

    Resharper正在显示“可能的System.NullReferenceException”警告。但是我不知道怎么弄到。

    public class PlaceController : PlanningControllerBase
    {
        [Authorize]
        public ActionResult StartStop(int id)
        {
            if (Request != null && Request.Cookies != null && Request.Cookies["place"] != null)
            {
                if (Request.Cookies["place"].Value != null)//Possible NullReferenceException?
                {
                    string placeInformation = Request.Cookies["place"].Value;//Possible NullReferenceException?
                    //...
                }
            }
        }
    }
    

    如果我检查了所有字段,这将如何提供空引用?使用以下选项不会显示警告:

    Request.Cookies[0];//Index instead of name
    

    编辑:更新代码。

    3 回复  |  直到 15 年前
        1
  •  6
  •   Lee    15 年前

    我假设检查器没有检查传递给CookieCollection索引器的字符串的值是否每次都相同。我想如果你把代码重组为:

    if (Request != null && Request.Cookies != null) 
    {
        var place = Request.Cookies["place"];
        if (place != null && place.Value == null) 
        { 
            string placeInformation = place.Value;
        } 
    }
    

    可能会奏效。

        2
  •  3
  •   ChaosPandion    15 年前

    你不需要听每个警告。这个 Request 对象与 Cookies 对象永远不会是空的,所以这就是您所需要的。

    var placeCookie = Request.Cookies["place"]; 
    if (placeCookie != null)
    {
        string placeInformation = placeCookie.Value;
    }
    
        3
  •  0
  •   Hogan    15 年前

    呃,你不想 Request.Cookies["place"].Value != null ,此时您将只将PlaceInformation设置为空。