System.Json.JsonReader.Read C# (CSharp) Method

Read() public method

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