RtcConnection
包含连接信息的类。
C#
public class RtcConnection
{
public RtcConnection()
{
}
public RtcConnection(string channelId, uint localUid)
{
this.channelId = channelId;
this.localUid = localUid;
}
public string channelId { set; get; }
public uint localUid { set; get; }
};
channelId
频道名。
localUid
本地用户 ID。