ServicePoint.Address-Eigenschaft
Ruft den URI (Uniform Resource Identifier) des Servers ab, mit dem dieses ServicePoint-Objekt eine Verbindung herstellt.
Namespace: System.Net
Assembly: System (in system.dll)
Syntax
'Declaration
Public ReadOnly Property Address As Uri
'Usage
Dim instance As ServicePoint
Dim value As Uri
value = instance.Address
public Uri Address { get; }
public:
property Uri^ Address {
Uri^ get ();
}
/** @property */
public Uri get_Address ()
public function get Address () : Uri
Eigenschaftenwert
Eine Instanz der Uri-Klasse, die den URI des Internetservers enthält, mit dem dieses ServicePoint-Objekt eine Verbindung herstellt.
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
Die ServicePoint befindet sich im Hostmodus. |
Beispiel
Im folgenden Codebeispiel wird der Wert dieser Eigenschaft angezeigt.
' Display the ServicePoint Internet resource address.
Console.WriteLine(("Address = " + sp.Address.ToString()))
// Display the ServicePoint Internet resource address.
Console.WriteLine ("Address = {0} ", sp.Address.ToString ());
// Display the ServicePoint Internet resource address.
Console::WriteLine( "Address = {0}", sp->Address );
// Display the ServicePoint Internet resource address.
Console.WriteLine("Address = {0} ", sp.get_Address().ToString());
.NET Framework-Sicherheit
- WebPermission Für die Verwendung von Address, wenn der ServicePoint die Verbindung über einen Proxyserver herstellt.
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
ServicePoint-Klasse
ServicePoint-Member
System.Net-Namespace