Exemplo n.º 1
0
 public ApiPostController(HttpHandler httpHandler)
 {
     _httpHandler = httpHandler;
 }
Exemplo n.º 2
0
 public ApiPostHandler(HttpHandler httpHandler)
 {
     _httpHandler = httpHandler;
 }
Exemplo n.º 3
0
 public ApiPostHandlerAsync(HttpHandler httpHandler)
 {
     _httpHandler = httpHandler ?? throw new ArgumentNullException(nameof(httpHandler));
 }