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