Top "Webclient" questions

WebClient is a class for .NET Framework applications that provides methods for sending and receiving data from a resource identified by a URI.

Sending HTTP POST with System.Net.WebClient

Is it possible to send HTTP POST with some form data with System.Net.WebClient? If not, is there another …

.net vb.net http webclient
HttpClient does not exist in .net 4.0: what can I do?

Ok i edited my code i dont get errors but the messageBox.Show return nothing empty box. Maybe i need …

c# .net webclient
How to get status code from webclient?

I am using the WebClient class to post some data to a web form. I would like to get the …

c# .net vb.net webclient
Set timeout for webClient.DownloadFile()

I'm using webClient.DownloadFile() to download a file can I set a timeout for this so that it won't take …

c# .net download webclient
How do I authenticate a WebClient request?

I am making a call to a page on my site using webclient. I'm trying to get the result of …

c# asp.net webclient
How to use verb GET with WebClient request?

How might I change the verb of a WebClient request? It seems to only allow/default to POST, even in …

c# webclient http-get
How do I create a directory on FTP server using C#?

What's an easy way to create a directory on an FTP server using C#? I figured out how to upload …

c# .net ftp webclient
C# webclient and proxy server

I am using a web client class in my source code for downloading a string using http. This was working …

c# proxy webclient
How can you add a Certificate to WebClient (C#)?

I know it is pretty simple to add a certificate to a HttpWebRequest. However, I have not found a way …

c# httpwebrequest certificate webclient http-post
WebClient set headers

How I can set a header in the webClient class? I tried: client.Headers["Content-Type"] = "image/jpeg"; that throws a …

c# .net header webclient