Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UriBuilder::Fragment Property

 

Gets or sets the fragment portion of the URI.

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

public:
property String^ Fragment {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The fragment portion of the URI. The fragment identifier ("#") is added to the beginning of the fragment.

The Fragment property contains any text following a fragment marker (#) in the URI, including the marker itself. When setting the Fragment property, the fragment marker is added to its value. Note   In version 1.0 and 1.1 of the .NET Framework, setting the Fragment property to any value, including null, cleared the Query property, and setting the Fragment property to null or to String::Empty cleared the property. In version 2.0, however, the Fragment and Query properties are independent.

Note   Do not append a string directly to this property. If the length of Fragment is greater than 1, retrieve the property value as a string, remove the leading pound sign, append the new query string, and set the property with the combined string.

The following example creates the URI "http://www.contoso.com/index.htm#main".

UriBuilder^ uBuild = gcnew UriBuilder( "http://www.contoso.com/" );
uBuild->Path = "index.htm";
uBuild->Fragment = "main";
Uri^ myUri = uBuild->Uri;

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft