public bool Get <D>(string name, ref D[] v, int proj = 0x00ff) where D : IData, new() { JObj jo = elements[current]; return(jo != null && jo.Get(name, ref v)); }
public bool Get(string name, ref DateTime v) { JObj jo = elements[current]; return(jo != null && jo.Get(name, ref v)); }
public bool Get(string name, ref ArraySegment <byte> v) { JObj jo = elements[current]; return(jo != null && jo.Get(name, ref v)); }