1234567891011121314151617181920212223242526272829303132333435 |
-
- using System.Reflection;
- namespace Topten.JsonKit
- {
-
-
-
-
- [Obfuscation(Exclude = true, ApplyToMembers = true)]
- public interface IJsonLoadField
- {
-
-
-
-
-
-
- bool OnJsonField(IJsonReader r, string key);
- }
- }
|