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