1 out of 1 rated this helpful - Rate this topic

FtpWebRequest.Proxy Property

Gets or sets the proxy used to communicate with the FTP server.

Namespace:  System.Net
Assembly:  System (in System.dll)
public override IWebProxy Proxy { get; set; }

Property Value

Type: System.Net.IWebProxy
An IWebProxy instance responsible for communicating with the FTP server.
Exception Condition
ArgumentNullException

This property cannot be set to null.

InvalidOperationException

A new value was specified for this property for a request that is already in progress.

The Proxy property identifies the IWebProxy instance that communicates with the FTP server. The proxy is set by the system by using configuration files and the Internet Explorer Local Area Network settings. To specify that no proxy should be used, set Proxy to the proxy instance returned by the GlobalProxySelection.GetEmptyWebProxy method. For more information about automatic proxy detection, see Automatic Proxy Detection.

You must set Proxy before writing data to the request's stream or getting the response. Changing Proxy after calling the GetRequestStream, BeginGetRequestStream, GetResponse, or BeginGetResponse method causes an InvalidOperationException exception.

The FtpWebRequest class supports HTTP and ISA Firewall Client proxies.

If the specified proxy is an HTTP proxy, only the DownloadFile, ListDirectory, and ListDirectoryDetails commands are supported.

The following code example displays this property value.


IWebProxy proxy = request.Proxy;
if (proxy != null)
{
    Console.WriteLine("Proxy: {0}", proxy.GetProxy(request.RequestUri));
} 
else
{
    Console.WriteLine("Proxy: (none)");
}

Console.WriteLine("ConnectionGroup: {0}",
    request.ConnectionGroupName == null ? "none" : request.ConnectionGroupName
);


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Limitations via WebProxy are severe
+1 agreed that having no write capabilities through an HttpProxy is a severe limitation. We are unable to rename or delete a file after downloading it.
Indeed a Joke
Same thoughts as the Joke! post. looking for another solution which will cost us again some money.
Joke!
It's a JOKE, this class don't supports upload with HTTP proxy. In this time i'll pay $249,00 to 3rd part API to use in professional aplication in a coportation tha uses an HTTP proxy.
ArgumentNullException is out of date, no longer thrown.
GlobalProxySelection.GetEmptyWebProxy is deprecated. The deprecation message says to use null for the proxy. If you use null on the proxy you will NOT get a ArgumentNullException.