¡@

Home 

c# Programming Glossary: httpclient

HttpClient.GetAsync(…) never returns when using await/async

http://stackoverflow.com/questions/10343632/httpclient-getasync-never-returns-when-using-await-async

&hellip never returns when using await async Edit.. encountered some odd behaviour using the System.Net.Http.HttpClient in .NET 4.5 where awaiting the result of a call to e.g. httpClient.GetAsync.. which never completes. Have I encountered a bug in the HttpClient class or am I misusing the API in some way Code to reproduce..

How do you set the Content-Type header for an HttpClient request?

http://stackoverflow.com/questions/10679214/how-do-you-set-the-content-type-header-for-an-httpclient-request

do you set the Content Type header for an HttpClient request I'm trying to set the Content Type header of an HttpClient.. request I'm trying to set the Content Type header of an HttpClient object as required by an API I am calling. I tried setting the.. the Content Type like below using var httpClient new HttpClient httpClient.BaseAddress new Uri http example.com httpClient.DefaultRequestHeaders.Add..

Google OAuth2 Service Account Access Token Request gives 'Invalid Request' Response

http://stackoverflow.com/questions/11939026/google-oauth2-service-account-access-token-request-gives-invalid-request-respo

. signatureEncoded Console.WriteLine jwt var client new HttpClient var uri https accounts.google.com o oauth2 token var post new..

How do I set a cookie on HttpClient's HttpRequestMessage

http://stackoverflow.com/questions/12373738/how-do-i-set-a-cookie-on-httpclients-httprequestmessage

do I set a cookie on HttpClient's HttpRequestMessage I am trying to use the web api's HttpClient.. HttpRequestMessage I am trying to use the web api's HttpClient to do a post to an endpoint that requires login in the form.. cookieContainer new CookieContainer using var handler new HttpClientHandler CookieContainer cookieContainer using var client new..

HttpClient request throws IOException

http://stackoverflow.com/questions/13141434/httpclient-request-throws-ioexception

request throws IOException The following code throws a IOException.. the message The specified registry key does not exist. HttpClient client new HttpClient Uri uri new Uri http www.google.com client.GetAsync.. registry key does not exist. HttpClient client new HttpClient Uri uri new Uri http www.google.com client.GetAsync uri This..

Android — How to access data in an ASP.NET database via app?

http://stackoverflow.com/questions/3311681/android-how-to-access-data-in-an-asp-net-database-via-app

throws ClientProtocolException IOException JSONException HttpClient httpClient new DefaultHttpClient HttpHost httpHost new HttpHost.. IOException JSONException HttpClient httpClient new DefaultHttpClient HttpHost httpHost new HttpHost host port HttpPost httpPost new..

How to Consume a Restful Service in .NET?

http://stackoverflow.com/questions/8883656/how-to-consume-a-restful-service-in-net

When is WCF using the WebChannelFactory more preferable to HttpClient c# .net rest share improve this question Check out restsharp..

WebClient class doesn't exist in Windows 8

http://stackoverflow.com/questions/9482402/webclient-class-doesnt-exist-in-windows-8

studio 2012 share improve this question Option 1 HttpClient if don't need deterministic progress notification this is what.. want use. Example. public async Task string MakeWebRequest HttpClient http new System.Net.Http.HttpClient HttpResponseMessage response.. string MakeWebRequest HttpClient http new System.Net.Http.HttpClient HttpResponseMessage response await http.GetAsync http www.example.com..

HttpClient.GetAsync(…) never returns when using await/async

http://stackoverflow.com/questions/10343632/httpclient-getasync-never-returns-when-using-await-async

c# .net asynchronous async await dotnet httpclient share improve this question You are misusing the API. Here's..

HttpClient request throws IOException

http://stackoverflow.com/questions/13141434/httpclient-request-throws-ioexception

0x51 bytes Native to Managed Transition c# .net httpclient ioexception share improve this question It seems that this..

.NET HttpClient. How to POST string value?

http://stackoverflow.com/questions/15176538/net-httpclient-how-to-post-string-value

return result Thanks in advance c# asp.net web api dotnet httpclient share improve this question using System using System.Collections.Generic..

Do HttpClient and HttpClientHandler have to be disposed?

http://stackoverflow.com/questions/15705092/do-httpclient-and-httpclienthandler-have-to-be-disposed

misleading or unsafe c# .net 4.5 idisposable using dotnet httpclient share improve this question The general consensus is that.. you read http ofps.oreilly.com titles 9781449337711 ch_httpclient.html for context on what is going on under the hood particularly..

C# HttpClient 4.5 multipart/form-data upload

http://stackoverflow.com/questions/16416601/c-sharp-httpclient-4-5-multipart-form-data-upload

internet. c# upload .net 4.5 multipartform data dotnet httpclient share improve this question It works more or less like this..

Trying to run multiple HTTP requests in parallel, but being limited by Windows (registry)

http://stackoverflow.com/questions/2960056/trying-to-run-multiple-http-requests-in-parallel-but-being-limited-by-windows

the problem shouldn't be there either. c# multithreading httpclient share improve this question It is matter of ServicePoint..

Reuse asynchronous socket: subsequent connect attempts fail

http://stackoverflow.com/questions/5762276/reuse-asynchronous-socket-subsequent-connect-attempts-fail

but I get the same problem c# http sockets asynchronous httpclient share improve this question I commented on this question..

HTTP client and forms authentication in C#

http://stackoverflow.com/questions/640116/http-client-and-forms-authentication-in-c-sharp

a authenticated page. c# forms authentication dotnet httpclient share improve this question It depends on how the website..

HttpClient.GetAsync(…) never returns when using await/async

http://stackoverflow.com/questions/10343632/httpclient-getasync-never-returns-when-using-await-async

in .NET 4.5 where awaiting the result of a call to e.g. httpClient.GetAsync ... will never return. This only occurs in certain.. protected Task string Continuations_GetSomeDataAsync var httpClient new HttpClient var t httpClient.GetAsync http stackoverflow.com.. var httpClient new HttpClient var t httpClient.GetAsync http stackoverflow.com HttpCompletionOption.ResponseHeadersRead..

How do you set the Content-Type header for an HttpClient request?

http://stackoverflow.com/questions/10679214/how-do-you-set-the-content-type-header-for-an-httpclient-request

I tried setting the Content Type like below using var httpClient new HttpClient httpClient.BaseAddress new Uri http example.com.. Type like below using var httpClient new HttpClient httpClient.BaseAddress new Uri http example.com httpClient.DefaultRequestHeaders.Add.. HttpClient httpClient.BaseAddress new Uri http example.com httpClient.DefaultRequestHeaders.Add Accept application json httpClient.DefaultRequestHeaders.Add..

Download an image to local storage in Metro style apps

http://stackoverflow.com/questions/10836367/download-an-image-to-local-storage-in-metro-style-apps

HttpResponseMessage response await rootPage.httpClient.SendAsync request HttpCompletionOption.ResponseHeadersRead httpClient.. request HttpCompletionOption.ResponseHeadersRead httpClient is a HttpClient and its BaseAddress needs to be set a the server..

Deserialize JSON object sent from Android app to WCF webservice

http://stackoverflow.com/questions/13165533/deserialize-json-object-sent-from-android-app-to-wcf-webservice

entity Send request to WCF service DefaultHttpClient httpClient new DefaultHttpClient HttpResponse response httpClient.execute.. httpClient new DefaultHttpClient HttpResponse response httpClient.execute request HttpEntity httpEntity response.getEntity String..

Android — How to access data in an ASP.NET database via app?

http://stackoverflow.com/questions/3311681/android-how-to-access-data-in-an-asp-net-database-via-app

IOException JSONException HttpClient httpClient new DefaultHttpClient HttpHost httpHost new HttpHost host port.. utf8 httpPost.setEntity bodyEntity HttpResponse response httpClient.execute httpHost httpPost HttpEntity entity response.getEntity..