GetCookies-Methode hinzugefügt. Test für http-Dienst hinzugefügt

This commit is contained in:
Developer 02
2024-06-26 16:57:30 +02:00
parent 8d38e883df
commit d84ef820f1
6 changed files with 142 additions and 5 deletions

View File

@@ -1,9 +1,13 @@
namespace DigitalData.Core.Abstractions.Client
using System.Net;
namespace DigitalData.Core.Abstractions.Client
{
public interface IBaseHttpClientService
{
public string Uri { get; init; }
public CookieCollection GetCookies(string route = "");
Task<HttpResponseMessage> FetchAsync(
string route = "",
HttpMethod? method = null,