Example #1
0
 public bool Equals(AresChannel other)
 {
     if (other is null)
     {
         return(false);
     }
     return(ExternalIp.Equals(other.ExternalIp) && Name == other.Name);
 }
Example #2
0
 public bool Equals(AresChannel other)
 {
     if (other == null)
     {
         return(false);
     }
     return(ExternalIp.Equals(other.ExternalIp) && Port == other.Port);
 }