123456789101112131415161718192021222324 |
- #if !BESTHTTP_DISABLE_SIGNALR
- using System.Collections.Generic;
- namespace BestHTTP.SignalR.JsonEncoders
- {
-
-
-
- public interface IJsonEncoder
- {
-
-
-
- string Encode(object obj);
-
-
-
- IDictionary<string, object> DecodeMessage(string json);
- }
- }
- #endif
|