Uri::Fragment Property
Gets the escaped URI fragment.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | This instance represents a relative URI, and this property is valid only for absolute URIs. |
The Fragment property gets any text following a fragment marker (#) in the URI, including the fragment marker itself. Given the URI http://www.contoso.com/index.htm#main, the Fragment property would return #main.
The Fragment property is not considered in any Equals comparison.
The following example creates a Uri instance and writes the fragment information to the console.
// Create Uri Uri^ uriAddress = gcnew Uri( "http://www.contoso.com/index.htm#search" ); Console::WriteLine( uriAddress->Fragment ); Console::WriteLine( "Uri {0} the default port ", uriAddress->IsDefaultPort ? (String^)"uses" : "does not use" ); Console::WriteLine( "The path of this Uri is {0}", uriAddress->GetLeftPart( UriPartial::Path ) ); Console::WriteLine( "Hash code {0}", uriAddress->GetHashCode() );
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.