123456789101112131415161718192021222324252627282930313233343536373839404142 |
-
- 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();
- }
- }
|