Exemplo n.º 1
0
 public APIKeyMiddleware(RequestDelegate next, APIKeyOptions options)
 {
     this.next    = next;
     this.options = options;
 }
Exemplo n.º 2
0
 public APIKeyMiddleware(RequestDelegate next, IOptions <APIKeyOptions> options)
 {
     this.next    = next;
     this.options = options.Value;
 }