Пример #1
0
 private bool EqualsData(TcpOptionAuthentication other)
 {
     return(other != null &&
            KeyId.Equals(other.KeyId) &&
            RequestedNextKeyId.Equals(other.RequestedNextKeyId) &&
            MessageAuthenticationCode.SequenceEqual(other.MessageAuthenticationCode));
 }
Пример #2
0
 private bool EqualsData(TcpOptionAuthentication other)
 {
     return other != null &&
            KeyId.Equals(other.KeyId) &&
            RequestedNextKeyId.Equals(other.RequestedNextKeyId) &&
            MessageAuthenticationCode.SequenceEqual(other.MessageAuthenticationCode);
 }