Newtonsoft.Json.Linq.JTokenReader.ReadInto C# (CSharp) Method

ReadInto() private method

private ReadInto ( JContainer c ) : bool
c JContainer
return bool
    private bool ReadInto(JContainer c)
    {
      JToken firstChild = c.First;
      if (firstChild == null)
      {
        return SetEnd(c);
      }
      else
      {
        SetToken(firstChild);
        _current = firstChild;
        _parent = c;
        return true;
      }
    }