12345678910111213141516171819202122232425262728293031323334 |
-
- 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);
- }
- }
|