We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have the HttpService that CoinbaseClient consumes follow HTTPClient standards to enable HTTP retry and DI handling.
https://docs.microsoft.com/en-us/dotnet/architecture/microservices/implement-resilient-applications/use-httpclientfactory-to-implement-resilient-http-requests#how-to-use-typed-clients-with-ihttpclientfactory
The text was updated successfully, but these errors were encountered:
Looking for something like this ` private readonly System.Net.Http.HttpClient Client;
public HttpClient() : this(new System.Net.Http.HttpClient()) { } public HttpClient(System.Net.Http.HttpClient httpClient) { Client = httpClient; }`
Sorry, something went wrong.
No branches or pull requests
Have the HttpService that CoinbaseClient consumes follow HTTPClient standards to enable HTTP retry and DI handling.
https://docs.microsoft.com/en-us/dotnet/architecture/microservices/implement-resilient-applications/use-httpclientfactory-to-implement-resilient-http-requests#how-to-use-typed-clients-with-ihttpclientfactory
The text was updated successfully, but these errors were encountered: