Lines Matching defs:json

564         public static object DeserializeObject (string json)  in DeserializeObject()
592 public static bool TryDeserializeObject(string json, out object @object, ref int line) in TryDeserializeObject()
616 …public static object DeserializeObject(string json, Type type, IJsonSerializerStrategy jsonSeriali… in DeserializeObject()
626 public static object DeserializeObject(string json, Type type) in DeserializeObject()
631 … public static T DeserializeObject<T>(string json, IJsonSerializerStrategy jsonSerializerStrategy) in DeserializeObject()
636 public static T DeserializeObject<T>(string json) in DeserializeObject()
647 … public static string SerializeObject(object json, IJsonSerializerStrategy jsonSerializerStrategy) in SerializeObject()
654 public static string SerializeObject(object json) in SerializeObject()
725 …protected static IDictionary<string, object> ParseObject(char[] json, ref int index, ref bool succ… in ParseObject()
791 … protected static JsonArray ParseArray(char[] json, ref int index, ref bool success, ref int line) in ParseArray()
839 … protected static object ParseValue(char[] json, ref int index, ref bool success, ref int line) in ParseValue()
868 … protected static string ParseString(char[] json, ref int index, ref bool success, ref int line) in ParseString()
1008 … protected static object ParseNumber(char[] json, ref int index, ref bool success, ref int line) in ParseNumber()
1064 protected static int GetLastIndexOfNumber(char[] json, int index) in GetLastIndexOfNumber()
1078 protected static void EatWhitespace(char[] json, ref int index, ref int line) in EatWhitespace()
1093 protected static void EatComment(char[] json, ref int index, ref int line) in EatComment()
1111 protected static int LookAhead (char[] json, int index, int line) in LookAhead()
1118 protected static int NextToken(char[] json, ref int index, ref int line) in NextToken()