RtcConnection

Contains connection information.

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; }
    };

Attributes

channelId
The channel name.
localUid
The ID of the local user.