Refers to the System.
I'm trying to post some JSON to an external API which keeps failing because my content is chunked. Please can …
asp.net asp.net-core dotnet-httpclient .net-coreI am trying to do a PUT request to a Web API method using HttpClient. An almost identical POST request …
c# asp.net-web-api restsharp http-status-code-400 dotnet-httpclientI'm trying to get cookies on the Spotify login page with C# and the HttpClient class. However, the CookieContainer is …
c# cookies spotify dotnet-httpclient cookiecontainerHttpClient has a builtin timeout feature (despite being all asynchronous, i.e. timeouts could be considered orthogonal to the http …
c# .net timeout task-parallel-library dotnet-httpclientI've build a simple console applications that download files from the internet. Because I had problems with WebClient I decided …
c# asynchronous dotnet-httpclient .net-4.6Want to send data with client certificate (.p12 or .pfx) from Windows application to Server machine, Windows application developed in .…
c# dotnet-httpclient client-certificates x509certificate2I have a curl request that looks like this: curl -i -XPOST 'http://my_url:port/write?db=myDb' -u …
c# .net curl dotnet-httpclient asynchttpclientI want to add an HttClientHandler for a Typed HttpClient in order to include certificate authentication. All the examples I'm …
c# .net-core dotnet-httpclient .net-core-2.1 httpclientfactorySo, I've registered a named client with the services collection in my Startup.cs: services.AddHttpClient(someServiceName, client => client.…
.net-core dotnet-httpclient idisposable asp.net-core-2.1 httpclientfactoryWe are developing a Web API RESTful service to provide access to common data to all the applications of our …
.net asp.net-web-api dotnet-httpclient