NClient icon indicating copy to clipboard operation
NClient copied to clipboard

Sending requests inside the handler

Open smolchanovsky opened this issue 2 years ago • 0 comments

Sometimes it becomes necessary to send additional requests in the handler, for example, to process 4** response codes. Here is an example of how it can be used in the system HttpClient. It is necessary to make the same feature in the NClient.

A workaround that can be used now:

public void ConfigureServices(IServiceCollection services)
{
    services.AddRestNClient<IMyClient>()
        .AddHttpMessageHandler<AuthHeaderHandler>();
}

you can add HttpClient's system handlers.

smolchanovsky avatar Apr 16 '22 14:04 smolchanovsky