public ParticipantChangedEventArgs(RtpCommunicator communicator, Multicast multicast, Participant participant, ParticipantChangedType type)
 {
     this.Communicator = communicator;
     this.Multicast    = multicast;
     this.Participant  = participant;
     this.Type         = type;
 }
Ejemplo n.º 2
0
 private void RaiseParticipantChanged(Multicast multicast, Participant participant, ParticipantChangedType type)
 {
     _participantTrigger.Raise(new ParticipantChangedEventArgs(this, multicast, participant, type));
 }