From c1782bf4c33c63841d21f4d38ed36dc26d696c75 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Mon, 29 Jul 2024 15:36:25 +0200 Subject: [PATCH] =?UTF-8?q?refactor:=20Uri-Eigenschaft=20in=20BaseHttpClie?= =?UTF-8?q?ntService=20auf=20protected=20set=20ge=C3=A4ndert=20f=C3=BCr=20?= =?UTF-8?q?bessere=20Kapselung?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Legacy.Client/BaseHttpClientService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DigitalData.Core.Legacy.Client/BaseHttpClientService.cs b/DigitalData.Core.Legacy.Client/BaseHttpClientService.cs index 9a6dceb..8df8c0a 100644 --- a/DigitalData.Core.Legacy.Client/BaseHttpClientService.cs +++ b/DigitalData.Core.Legacy.Client/BaseHttpClientService.cs @@ -12,7 +12,7 @@ namespace DigitalData.Core.Legacy.Client protected readonly HttpClient _client; protected readonly CookieContainer _cookies; - public string Uri { get; } + public string Uri { get; protected set; } public BaseHttpClientService(HttpClient client, CookieContainer cookieContainer, IOptions clientOptions) {