private bool EqualsData(IpV6MobilityOptionAuthentication other)
 {
     return other != null &&
            Subtype == other.Subtype && MobilitySecurityParameterIndex == other.MobilitySecurityParameterIndex &&
            AuthenticationData.Equals(other.AuthenticationData);
 }
 private bool EqualsData(IpV6MobilityOptionAuthentication other)
 {
     return(other != null &&
            Subtype == other.Subtype && MobilitySecurityParameterIndex == other.MobilitySecurityParameterIndex &&
            AuthenticationData.Equals(other.AuthenticationData));
 }