public bool IsEqual(SecProtocolOptions other)
 {
     if (other == null)
     {
         return(false);
     }
     return(sec_protocol_options_are_equal(GetCheckedHandle(), other.Handle));
 }
 static public bool IsEqual(SecProtocolOptions optionsA, SecProtocolOptions optionsB)
 {
     if (optionsA == null)
     {
         return(optionsB == null);
     }
     else if (optionsB == null)
     {
         return(false);
     }
     return(sec_protocol_options_are_equal(optionsA.Handle, optionsB.Handle));
 }