public async Task <GadgetResponse <IntrospectorGadget.Result> > Introspector([FromBody] IntrospectorGadget.Request request) { this.logger.LogInformation("Executing Introspector API"); var gadget = new IntrospectorGadget(this.logger, this.httpClientFactory, Url, this.Request, this.environment, this.configuration, this.appSettings); return(await gadget.ExecuteAsync(request)); }
public async Task <GadgetResponse <IntrospectorGadget.Result> > Introspector([FromBody] IntrospectorGadget.Request request) { var gadget = new IntrospectorGadget(this.httpClientFactory, Url, this.Request, this.environment, this.configuration); return(await gadget.ExecuteAsync(request)); }