Beispiel #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IControllerAddress controllerAddress)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });
        }
Beispiel #2
0
 public ControllerIdentificationService(IHttpContextAccessor httpContextAccessor, IControllerAddress controllerAddress)
 {
     _httpContextAccessor = httpContextAccessor;
     _controllerAddress   = controllerAddress;
 }
Beispiel #3
0
 protected Base(IControllerIdentificationService controllerIdentificationService, IAsyncClient asyncClient)
 {
     _controllerAddress = controllerIdentificationService.GetControllerAddress().GetAwaiter().GetResult();
     _asyncClient       = asyncClient;
 }