Bedingung vom Typ new() entfernen

This commit is contained in:
Developer 02
2024-06-27 16:02:41 +02:00
parent 8f09ec4255
commit b0f5738390
7 changed files with 10 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ using System.Net;
namespace DigitalData.Core.Client
{
public class HttpClientService<TClientOptions> : BaseHttpClientService, IHttpClientService<TClientOptions>, IBaseHttpClientService
where TClientOptions : HttpClientOptions, new()
where TClientOptions : HttpClientOptions
{
public HttpClientService(HttpClient client, CookieContainer cookieContainer, IOptions<TClientOptions> clientOptions) : base(client, cookieContainer, clientOptions)
{