Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created July 9, 2020 00:59
Show Gist options
  • Select an option

  • Save PradeepLoganathan/07edc3edff39c2cfc3a5c1afbaa3751c to your computer and use it in GitHub Desktop.

Select an option

Save PradeepLoganathan/07edc3edff39c2cfc3a5c1afbaa3751c to your computer and use it in GitHub Desktop.
Configure httpclientfactory to create httpclient for http2
services.AddHttpClient<ICandidateService, CandidateService>(client =>
{
client.BaseAddress = new Uri("https://localhost:5001"),
client.DefaultRequestVersion = new Version(2, 0)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment