Hide / Show Channel

1. Hide Channel

You can hide a channel so that it does not appear in currently joined channel list.

TalkPlusApi.HideChannel(channelId, () => {
   // SUCCESS
}, (int statusCode, Exception e) => {
   // FAILURE
});

2. Show Channel

You can unhide a channel so that it appears in currently joined channel list.

TalkPlusApi.ShowChannel(channelId, () => {
   // SUCCESS
}, (int statusCode, Exception e) => {
   // FAILURE
});

3. Get Hidden Channel List

TalkPlusApi.GetHiddenChannels(lastChannel, 
   (List<TPChannel> tpChannels, bool hasNext) => {
   // SUCCESS
}, (int statusCode, Exception e) => {
   // FAILURE
});

Last updated