We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SolidHttp is designed to work with the Startup class and IServiceCollection.
public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddSolidHttpCore(); } }
public class Startup { public void ConfigureServices(IServiceCollection services) { services .AddSolidHttpCore(builder => builder.Configure(options => options.OnRequestCreated((provider, request) => { request.WithHeader("x-default-header", "default"); })); } }