System.Json.JsonReader.Read C# (CSharp) 메소드

Read() 공개 메소드

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