Files
tianrunCRM/Assets/BestHTTP/SocketIO/JsonEncoders/DefaultJSonEncoder.cs

25 lines
630 B
C#
Raw Normal View History

2020-07-09 08:50:24 +08:00
#if !BESTHTTP_DISABLE_SOCKETIO
using System.Collections.Generic;
using BestHTTP.JSON;
namespace BestHTTP.SocketIO.JsonEncoders
{
/// <summary>
/// The default IJsonEncoder implementation. It's uses the Json class from the BestHTTP.JSON namespace to encode and decode.
/// </summary>
public sealed class DefaultJSonEncoder : IJsonEncoder
{
public List<object> Decode(string json)
{
return Json.Decode(json) as List<object>;
}
public string Encode(List<object> obj)
{
return Json.Encode(obj);
}
}
}
#endif