Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

21 lignes
490B

  1. using Confluent.Kafka.Admin;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TelpoKafkaConsole.Model
  8. {
  9. public class ScramCredentialsUser
  10. {
  11. public string Name { get; set; } = default!;
  12. public string Password { get; set; } = string.Empty;
  13. public ScramMechanism Mechanism { get; set; } = ScramMechanism.ScramSha256;
  14. public int Iterations { get; set; } = 8192;
  15. }
  16. }