Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

WebProxy.Address Property

Definition

Namespace:
System.Net
Assemblies:
netstandard.dll, System.Net.WebProxy.dll
Assembly:
System.Net.WebProxy.dll
Assembly:
System.dll
Assembly:
netstandard.dll
Source:
WebProxy.cs
Source:
WebProxy.cs
Source:
WebProxy.cs
Source:
WebProxy.cs
Source:
WebProxy.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the address of the proxy server.

public:
 property Uri ^ Address { Uri ^ get(); void set(Uri ^ value); };
public Uri? Address { get; set; }
public Uri Address { get; set; }
member this.Address : Uri with get, set
Public Property Address As Uri

Property Value

Uri

A Uri instance that contains the address of the proxy server.

Examples

The following code example displays the properties of a WebProxy object, including its Address.

// The following method displays the properties of the
// specified WebProxy instance.

public static void DisplayProxyProperties(WebProxy proxy)
{
 Console.WriteLine("Address: {0}", proxy.Address);
 Console.WriteLine( "Bypass on local: {0}", proxy.BypassProxyOnLocal );

 int count = proxy.BypassList.Length;
 if (count == 0)
 {
 Console.WriteLine("The bypass list is empty.");
 return;
 }
 string[] bypass = proxy.BypassList;
 Console.WriteLine("The bypass list contents:");

 for (int i=0; i< count; i++)
 {
 Console.WriteLine(bypass[i]);
 }
}

Remarks

The Address property contains the address of the proxy server. When automatic proxy detection is not enabled, and no automatic configuration script is specified, the Address property and BypassList determine the proxy used for a request.

When the Address property is null, requests bypass the proxy and connect directly to the destination host.

Applies to


Feedback

Was this page helpful?