Exemplo n.º 1
0
 public static ListTreeNode <JsonValue> ParseAsJson(this ArraySegment <byte> bytes)
 {
     return(JsonParser.Parse(new Utf8String(bytes)));
 }
Exemplo n.º 2
0
 public static ListTreeNode <JsonValue> ParseAsJson(this string json)
 {
     return(JsonParser.Parse(json));
 }
Exemplo n.º 3
0
 public static ListTreeNode <JsonValue> ParseAsJson(this byte[] bytes)
 {
     return(JsonParser.Parse(new Utf8String(bytes)));
 }