public async Task OnPost()
        {
            this.logger.LogInformation("Executing Introspector page");
            var gadget = new IntrospectorGadget(this.logger, this.httpClientFactory, Url, this.Request, this.environment, this.configuration, this.appSettings);

            this.GadgetResponse = await gadget.ExecuteAsync(this.GadgetRequest);
        }
Ejemplo n.º 2
0
        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));
        }
Ejemplo n.º 3
0
        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));
        }
Ejemplo n.º 4
0
        public async Task OnPost()
        {
            var gadget = new IntrospectorGadget(this.httpClientFactory, Url, this.Request, this.environment, this.configuration);

            this.GadgetResponse = await gadget.ExecuteAsync(this.GadgetRequest);
        }