Ejemplo n.º 1
0
 public bool Equals(ConferencePortInfo other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other.SlotId == SlotId && Equals(other.Name, Name) && other.ClockRate == ClockRate &&
            other.ChannelCount == ChannelCount && other.SamplesPerFrame == SamplesPerFrame &&
            other.BitsPerSample == BitsPerSample;
 }
Ejemplo n.º 2
0
 public bool Equals(ConferencePortInfo other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other.SlotId == SlotId && Equals(other.Name, Name) && other.ClockRate == ClockRate &&
            other.ChannelCount == ChannelCount && other.SamplesPerFrame == SamplesPerFrame &&
            other.BitsPerSample == BitsPerSample);
 }