From 58351102b00dcffbf9bd9e120be6845b989731d8 Mon Sep 17 00:00:00 2001 From: Evgeny Valavin <35497422+evgenyvalavin@users.noreply.github.com> Date: Thu, 6 Jul 2023 11:10:16 +0500 Subject: [PATCH] Update README.md (#46) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c860950..d549346 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Let's build a better world together! 1. Provide your own implementation or use default one for interfaces: INetworkManager, INativeHttpClient, IHttpClientContext: ```c# _networkManager = new WindowsNetworkManager(); - _nativeHttpClient = new WindowsHttpClient(); + _nativeHttpClient = new WindowsHttpClient(_networkManager); _httpClientContext = new HttpClientContext(_nativeHttpClient); 2. Use ApiEndpoint as base class for your API endpoints: