Beispiel #1
0
 /// <summary>
 /// Two DnsResourceDataDnsKey are equal iff their zone key, revoke, secure entry point, protocol, algorithm and public key fields are equal.
 /// </summary>
 public bool Equals(DnsResourceDataDnsKey other)
 {
     return(other != null &&
            ZoneKey.Equals(other.ZoneKey) &&
            Revoke.Equals(other.Revoke) &&
            SecureEntryPoint.Equals(other.SecureEntryPoint) &&
            Protocol.Equals(other.Protocol) &&
            Algorithm.Equals(other.Algorithm) &&
            PublicKey.Equals(other.PublicKey));
 }