Uri.Fragment-Eigenschaft
Ruft das mit Escapezeichen versehene Fragment ab.
Namespace: System
Assembly: System (in system.dll)
Syntax
'Declaration
Public ReadOnly Property Fragment As String
'Usage
Dim instance As Uri
Dim value As String
value = instance.Fragment
public string Fragment { get; }
public:
property String^ Fragment {
String^ get ();
}
/** @property */
public String get_Fragment ()
public function get Fragment () : String
Eigenschaftenwert
Ein String mit URI-Fragmentinformationen.
Hinweise
Die Fragment-Eigenschaft ruft den Text, der auf eine Fragmentmarkierung (#) im URI folgt einschließlich der Fragmentmarkierung ab. Bei dem URI https://www.contoso.com/index.htm\#main würde die Fragment-Eigenschaft #main abrufen.
Die Fragment-Eigenschaft wird bei einem Equals-Vergleich nicht berücksichtigt.
Beispiel
Das folgende Beispiel erstellt eine Uri-Instanz und gibt die Fragmentinformationen auf der Konsole aus.
' Create Uri
Dim uriAddress As New Uri("https://www.contoso.com/index.htm#search")
Console.WriteLine(uriAddress.Fragment)
Console.WriteLine("Uri {0} the default port ", IIf(uriAddress.IsDefaultPort, "uses", "does not use")) 'TODO: For performance reasons this should be changed to nested IF statements
Console.WriteLine("The path of this Uri is {0}", uriAddress.GetLeftPart(UriPartial.Path))
Console.WriteLine("Hash code {0}", uriAddress.GetHashCode())
// Create Uri
Uri uriAddress = new Uri("https://www.contoso.com/index.htm#search");
Console.WriteLine(uriAddress.Fragment);
Console.WriteLine("Uri {0} the default port ", uriAddress.IsDefaultPort ? "uses" : "does not use");
Console.WriteLine("The path of this Uri is {0}", uriAddress.GetLeftPart(UriPartial.Path));
Console.WriteLine("Hash code {0}", uriAddress.GetHashCode());
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