Esempio n. 1
0
    private void OnPlayListResponse(string obj)
    {
        Debug.Log("[播放器] 向控制器发送播放列表");
        string  pl      = JsonUtility.ToJson(playList);
        Message message = new Message {
            command = Command.PlayList, cmdContext = pl
        };

        TCPServer.BroadcastToClients(Encoding.UTF8.GetBytes(JsonUtility.ToJson(message)));
    }