NewTOAPIA.Net.Rtp.RtpParticipant.RtpParticipant C# (CSharp) Метод

RtpParticipant() приватный Метод

Called when an SdesPacket arrives with an ID (CNAME) that no other session Participant has
private RtpParticipant ( SdesData data, IPAddress ipAddress ) : System
data SdesData
ipAddress System.Net.IPAddress IpAddress this participant originates from
Результат System
        internal RtpParticipant(SdesData data, IPAddress ipAddress) 
            : base(data)
        {
            this.ipAddress = ipAddress;
            this.ssrcs = new List<uint>();
            this.stale = 0;

            SetPrivateExtension(Rtcp.PEP_SOURCE, Rtcp.PED_PARTICIPANT);
        }

Same methods

RtpParticipant::RtpParticipant ( string uniqueName, string friendlyName ) : System