채널에 참여합니다.
TalkPlusApi.JoinChannel(channelId, (TPChannel tpChannel) => {
// SUCCESS
}, (int statusCode, Exception e) => {
// FAILURE
});
초대 전용 채널에 참여합니다.
TalkPlusApi.JoinChannel(channelId, invitationCode, (TPChannel tpChannel) => {
// SUCCESS
}, (int statusCode, Exception e) => {
// FAILURE
});
채널에서 나갑니다.
TalkPlusApi.LeaveChannel(channel, deleteChannelIfEmpty, () => {
// SUCCESS
}, (int statusCode, Exception e) => {
// FAILURE
});