Dictionary dic = new Dictionary();
dic.Add("message", "CALL_ACCEPTED");
dic.Add("type", "0");
dic.Add("sendUser", "abc123");
AVIMTextMessage msg = new AVIMTextMessage();
msg.MergeCustomAttributes(dic);
await mConversation.SendMessageAsync(msg);
这是发送信息的code,请问接收信息那边怎么能收到 Dictionary呢?然后再得出"message"
十分感谢!