System.Json.JsonReader.Read C# (CSharp) Méthode

Read() public méthode

public Read ( ) : JsonValue
Résultat JsonValue
		public JsonValue Read ()
		{
			JsonValue v = ReadCore ();
			SkipSpaces ();
			if (r.Read () >= 0)
				throw JsonError (String.Format ("extra characters in JSON input"));
			return v;
		}