123456789101112131415161718192021222324252627282930313233343536 |
-
- using System;
- using System.Reflection;
- namespace Topten.JsonKit
- {
-
-
-
-
- [Obfuscation(Exclude = true, ApplyToMembers = true)]
- public interface IJsonLoadException
- {
-
-
-
-
-
- void OnJsonLoadException(IJsonReader r, Exception ex);
- }
- }
|