private protected override void FormatData(StringBuilder builder)
 {
     if (!string.IsNullOrWhiteSpace(SupportedMechanism))
     {
         builder.AppendLine($"Supported Mech  : {SupportedMechanism} - {OIDValues.ToString(SupportedMechanism)}");
     }
     builder.AppendLine($"State           : {State}");
 }
 private protected override void FormatData(StringBuilder builder)
 {
     builder.AppendLine("Mechanism List  :");
     foreach (var oid in MechanismList)
     {
         builder.AppendLine($"{oid,-30} - {OIDValues.ToString(oid)}");
     }
     if (ContextFlags != NegotiateContextFlags.None)
     {
         builder.AppendLine($"Context Flags   : {ContextFlags}");
     }
 }