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:
@@ -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
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user