public JsonWebTokenAuthorization(IOptions<JWTSettings> o, RequestDelegate next)
 {
     this.next = next;
     this.config = o.Options;
 }
Exemplo n.º 2
0
 public SettingsController(IOptions<JWTSettings> obj)
 {
     this.jwtSettings = obj.Options;
 }
Exemplo n.º 3
0
 public JsonWebTokenAuthorization(IOptions <JWTSettings> o, RequestDelegate next)
 {
     this.next   = next;
     this.config = o.Options;
 }