Freigeben über


WebProxy.Address-Eigenschaft

Ruft die Adresse des Proxyservers ab oder legt diese fest.

Namespace: System.Net
Assembly: System (in system.dll)

Syntax

'Declaration
Public Property Address As Uri
'Usage
Dim instance As WebProxy
Dim value As Uri

value = instance.Address

instance.Address = value
public Uri Address { get; set; }
public:
property Uri^ Address {
    Uri^ get ();
    void set (Uri^ value);
}
/** @property */
public Uri get_Address ()

/** @property */
public void set_Address (Uri value)
public function get Address () : Uri

public function set Address (value : Uri)

Eigenschaftenwert

Eine Uri-Instanz mit der Adresse des Proxyservers.

Hinweise

Die Address-Eigenschaft enthält die Adresse des Proxyservers. Wenn die automatische Proxyerkennung aktiviert ist und kein automatisches Konfigurationsskript angegeben wurde, bestimmen die Address-Eigenschaft und die BypassList den für eine Anforderung verwendeten Proxy.

Wenn die Address-Eigenschaft NULL (Nothing in Visual Basic) ist, umgehen die Anforderungen den Proxy und stellen eine direkte Verbindung mit dem Zielhost her.

Beispiel

Im folgenden Codebeispiel werden die Eigenschaften eines WebProxy-Objekts, einschließlich seiner Address, angezeigt.

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

public static void DisplayProxyProperties(WebProxy proxy)
{
    Console.WriteLine("Address: {0}", proxy.Address);
      
    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]);
    }
}

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

WebProxy-Klasse
WebProxy-Member
System.Net-Namespace