123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
-
- using System;
- using System.Reflection;
- namespace Topten.JsonKit
- {
-
-
-
- [Obfuscation(Exclude = true, ApplyToMembers = true)]
- public interface IJsonWriter
- {
-
-
-
-
- void WriteStringLiteral(string str);
-
-
-
-
- void WriteRaw(string str);
-
-
-
-
- void WriteArray(Action callback);
-
-
-
-
- void WriteDictionary(Action callback);
-
-
-
-
- void WriteValue(object value);
-
-
-
- void WriteElement();
-
-
-
- void WriteKey(string key);
-
-
-
- void WriteKeyNoEscaping(string key);
- }
- }
|