public bool Equals(PeerInfo other) { if (other == null) { return(false); } return(ServiceEndPoint.Equals(other.ServiceEndPoint)); }
public override bool Equals(object obj) { if (obj == null) { return(false); } return(ServiceEndPoint.Equals(((PeerInfo)obj).ServiceEndPoint)); }