1234567891011121314151617181920212223242526272829303132333435363738 |
-
- using System;
- using System.Reflection;
- namespace Topten.JsonKit
- {
-
- [Obfuscation(Exclude=true, ApplyToMembers=true)]
- public interface IJsonReader
- {
- object Parse(Type type);
- T Parse<T>();
- void ParseInto(object into);
- Token CurrentToken { get; }
- object ReadLiteral(Func<object, object> converter);
- void ParseDictionary(Action<string> callback);
- void ParseArray(Action callback);
- LiteralKind GetLiteralKind();
- string GetLiteralString();
- void NextToken();
- }
- }
|