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.

Add request headers with WebClient C#

I have the following code with which I download a web-page into a byte array and then print it with …

c# webclient request-headers
System.Net.WebClient doesn't work with Windows Authentication

I am trying to use System.Net.WebClient in a WinForms application to upload a file to an IIS6 server …

iis webclient ntlm
WebClient error when downloading file from https URL

Trying to download xml file from https URL (https://nvd.nist.gov/download/nvd-rss.xml) This URL is openly accessible …

c# https console-application webclient downloadfile
WebClient Does not automatically redirect

When logging the login process using Firebug i see that it is like this POST //The normal post request GET //…

c# webclient
WebClient class doesn't exist in Windows 8

I want to use a HTTP webservice, and I've already developed an app for wp7. I use the WebClient class, …

c# webclient windows-8 windows-runtime visual-studio-2012
C# WebClient NTLM authentication starting for each request

Consider a simple C# NET Framework 4.0 application, that: uses WebClient authenticates using NTLM (tested on IIS 6.0 and IIS 7.5 server) retrieves …

c# .net authentication webclient ntlm
The underlying connection was closed exception while WebClient DownloadString

Just a piece of code WebClient wc = new WebClient(); String str = wc.DownloadString(new Uri("http://content.warframe.com/dynamic/…

c# webclient downloadstring
System.Net.WebException when using WebClient: Can not create SSL/TLS secure channel

When I execute the following code System.Net.ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, errors) => { return true; }; var webClient = new …

c# ssl webclient
How can I change the time limit for webClient.UploadData()?

I am using WebClient.UploadData() to do a post on a Java server. How can I extend the time limit? (…

c# .net web-services webclient
Downloaded file using webclient.DownloadFileAsync has 0KB

I'm trying to download zend-framework (from http://framework.zend.com/releases/ZendFramework-1.11.11/ZendFramework-1.11.11.zip) simply using WebClient string url = "http://…

c# .net download webclient downloadfileasync