Parse() public static method

public static Parse ( string aJSON ) : JSONNode
aJSON string
return JSONNode
Beispiel #1
0
 public JsonStream(string json)
 {
     RootNode = JSON.Parse(json);
 }
Beispiel #2
0
 public JsonStream(ITypeResolver typeResolver, string json)
 {
     _typeResolver = typeResolver;
     RootNode      = JSON.Parse(json);
 }
Beispiel #3
0
        public void Load(byte[] readAllBytes)
        {
            var json = Encoding.UTF8.GetString(readAllBytes, 0, readAllBytes.Length);

            RootNode = JSON.Parse(json);
        }