refactor(BaseHttpClientService): Verwendung von IEnumerable<KeyValuePair<string, object>> anstelle von Dictionary<string, string> in queryParams, form und headers inputs der FetchAsync Methode

This commit is contained in:
Developer 02
2024-11-25 09:28:47 +01:00
parent 0c2334cefb
commit 0334fc4cdf
3 changed files with 10 additions and 10 deletions

View File

@@ -12,11 +12,11 @@ namespace DigitalData.Core.Abstractions.Client
string? scheme = null,
int? port = null,
string path = "",
Dictionary<string, object?>? queryParams = null,
IEnumerable<KeyValuePair<string, object?>>? queryParams = null,
HttpMethod? method = null,
HttpContent? body = null,
Dictionary<string, string>? form = null,
Dictionary<string, string>? headers = null,
IEnumerable<KeyValuePair<string, object>>? form = null,
IEnumerable<KeyValuePair<string, object>>? headers = null,
bool sendWithCookie = true,
bool saveCookie = true
);