private void btn_createmultiroom_Click(object sender, EventArgs e)
        {
            string custom_info = "你们好";

            //string json_extension = "";
            room_name = Guid.NewGuid().ToString("N");

            //
            VChatAPI.CreateRoom(room_name, custom_info, null, _createroomcb);
        }
示例#2
0
        private void btn_createmultiroom_Click(object sender, EventArgs e)
        {
            NIMDemo.Helper.VChatHelper.CurrentVChatType = NIMDemo.Helper.VChatType.kMulti;
            string custom_info = "custom_info";

            //string json_extension = "";
            room_name = Guid.NewGuid().ToString("N");

            //
            VChatAPI.CreateRoom(room_name, custom_info, null, _createroomcb);
        }