feat(IHttpClientOptions):

Basispfad zu http-Client-Optionen hinzugefügt
This commit is contained in:
Developer 02
2024-11-22 12:05:13 +01:00
parent c3a12ba5b7
commit bd4d4856ea
6 changed files with 29 additions and 14 deletions

View File

@@ -6,12 +6,12 @@ namespace DigitalData.Core.Abstractions.Client
{
string Uri { get; init; }
CookieCollection GetCookies(string route = "");
CookieCollection GetCookies(string path = "");
Task<HttpResponseMessage> FetchAsync(
string? scheme = null,
int? port = null,
string? path = null,
string path = "",
Dictionary<string, string>? queryParams = null,
HttpMethod? method = null,
HttpContent? body = null,