Freigeben über


Uri.IsLoopback-Eigenschaft

Ruft einen Boolean-Wert ab, der angibt, ob der angegebene Uri auf den lokalen Host verweist.

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

Syntax

'Declaration
Public ReadOnly Property IsLoopback As Boolean
'Usage
Dim instance As Uri
Dim value As Boolean

value = instance.IsLoopback
public bool IsLoopback { get; }
public:
property bool IsLoopback {
    bool get ();
}
/** @property */
public boolean get_IsLoopback ()
public function get IsLoopback () : boolean

Eigenschaftenwert

true, wenn dieser Uri auf den lokalen Host verweist, andernfalls false.

Ausnahmen

Ausnahmetyp Bedingung

InvalidOperationException

Diese Instanz stellt einen relativen URI dar, diese Eigenschaft ist jedoch nur für absolute URIs gültig.

Hinweise

IsLoopback gibt true zurück, wenn beim Erstellen dieser Instanz der URI 127.0.0.1, loopback oder localhost angegeben wurde oder der URI keine Hostinformationen enthält (Beispiel: file:///c:Dir/file.txt). Alle anderen URIs geben false zurück.

Beispiel

Im folgenden Beispiel wird eine Uri-Instanz erstellt und bestimmt, ob sie auf einen lokalen Host verweist.

    Dim uriAddress2 As New Uri("file://server/filename.ext")
    Console.WriteLine(uriAddress2.LocalPath)
    Console.WriteLine("Uri {0} a UNC path", IIf(uriAddress2.IsUnc, "is", "is not")) 'TODO: For performance reasons this should be changed to nested IF statements
    Console.WriteLine("Uri {0} a local host", IIf(uriAddress2.IsLoopback, "is", "is not")) 'TODO: For performance reasons this should be changed to nested IF statements
    Console.WriteLine("Uri {0} a file", IIf(uriAddress2.IsFile, "is", "is not")) 'TODO: For performance reasons this should be changed to nested IF statements

End Sub 'GetParts
Uri uriAddress2 =  new Uri("file://server/filename.ext");
Console.WriteLine(uriAddress2.LocalPath);
Console.WriteLine("Uri {0} a UNC path", uriAddress2.IsUnc ? "is" : "is not");
Console.WriteLine("Uri {0} a local host", uriAddress2.IsLoopback ? "is" : "is not");
Console.WriteLine("Uri {0} a file", uriAddress2.IsFile ? "is" : "is not");

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

Uri-Klasse
Uri-Member
System-Namespace