refactor: Uri-Eigenschaft in BaseHttpClientService auf protected set geändert für bessere Kapselung

This commit is contained in:
Developer 02 2024-07-29 15:36:25 +02:00
parent cff310ad59
commit c1782bf4c3

View File

@ -12,7 +12,7 @@ namespace DigitalData.Core.Legacy.Client
protected readonly HttpClient _client; protected readonly HttpClient _client;
protected readonly CookieContainer _cookies; protected readonly CookieContainer _cookies;
public string Uri { get; } public string Uri { get; protected set; }
public BaseHttpClientService(HttpClient client, CookieContainer cookieContainer, IOptions<HttpClientOptions> clientOptions) public BaseHttpClientService(HttpClient client, CookieContainer cookieContainer, IOptions<HttpClientOptions> clientOptions)
{ {