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.

IJwtManager.cs 296B

1234567891011
  1. using System.Security.Claims;
  2. namespace BlackRock.Reporting.API.Authentication
  3. {
  4. public interface IJwtManager
  5. {
  6. string GenerateToken(string username, int expireMinutes = 20);
  7. ClaimsPrincipal GetPrincipal(string token);
  8. string GetUserName(string token);
  9. }
  10. }