Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Last active June 8, 2018 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiannagel/49d0c5389d546810a9d92b454add1812 to your computer and use it in GitHub Desktop.
Save christiannagel/49d0c5389d546810a9d92b454add1812 to your computer and use it in GitHub Desktop.
Configuring a typed HttpClient in the dependency injection container
public TypedClientSample() => AppServices = ConfigureServices();
private ServiceProvider ConfigureServices()
{
var services = new ServiceCollection();
services.AddLogging(builder =>
{
builder.AddFilter((category, level) => true);
builder.AddConsole(options => options.IncludeScopes = true);
});
services.AddHttpClient("cni", client =>
{
client.BaseAddress = new Uri("https://www.cninnovation.com");
}).AddTypedClient<TypedClient>();
return services.BuildServiceProvider();
}
public IServiceProvider AppServices { get; private set; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment