ChannelMediaInfo
Channel media information.
public class ChannelMediaInfo
{
public ChannelMediaInfo()
{
}
public ChannelMediaInfo(string channelName, string token, uint uid)
{
this.channelName = channelName;
this.token = token;
this.uid = uid;
public string channelName { set; get; }
public string token { set; get; }
public uint uid { set; get; }
}
Attributes
- channelName
- The channel name.
- token
- The token that enables the user to join the channel.
- uid
- The user ID.