123456789101112131415161718192021222324 |
- #if !BESTHTTP_DISABLE_SOCKETIO
- using System.Collections.Generic;
- namespace BestHTTP.SocketIO.JsonEncoders
- {
-
-
-
- public interface IJsonEncoder
- {
-
-
-
- List<object> Decode(string json);
-
-
-
- string Encode(List<object> obj);
- }
- }
- #endif
|