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