internal bool EqualsParameters(DnsResourceDataNextDomainSecure3Base other) { return(other != null && HashAlgorithm.Equals(other.HashAlgorithm) && Flags.Equals(other.Flags) && Iterations.Equals(other.Iterations) && Salt.Equals(other.Salt)); }
/// <summary> /// Two HTTP response layers are equal iff they have the same version, header, body, status code and reason phrase. /// </summary> public bool Equals(HttpResponseLayer other) { return(base.Equals(other) && StatusCode == other.StatusCode && (ReferenceEquals(ReasonPhrase, other.ReasonPhrase) || ReasonPhrase.Equals(other.ReasonPhrase))); }