refactor(ClientOptions): add AfterHttpInit-property and bind to dependency injection

This commit is contained in:
2025-08-15 10:52:39 +02:00
parent 3eacbd89f7
commit 32b631a6c2
2 changed files with 7 additions and 2 deletions

View File

@@ -9,4 +9,6 @@ public class ClientOptions
public TimeSpan? Timeout { get; set; }
public Dictionary<string, string?>? QueryStrings { get; set; }
public Action<HttpClient>? AfterHttpInit { get; set; }
}