- DigitalData.Core.Client.Legacy wurde in DigitalData.Core.Legacy.Client umbenannt. - Projektdateien von DigitalData.Core.Client wurden nach DigitalData.Core.Legacy.Client kopiert. - DigitalData.Core.Legacy.Client wurde für .NET Framework konfiguriert.
14 lines
453 B
C#
14 lines
453 B
C#
using Microsoft.Extensions.Options;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
|
|
namespace DigitalData.Core.Legacy.Client
|
|
{
|
|
public class HttpClientService<TClientOptions> : BaseHttpClientService
|
|
where TClientOptions : HttpClientOptions
|
|
{
|
|
public HttpClientService(HttpClient client, CookieContainer cookieContainer, IOptions<TClientOptions> clientOptions) : base(client, cookieContainer, clientOptions)
|
|
{
|
|
}
|
|
}
|
|
} |