UriBuilder.Fragment Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the fragment portion of the URI.
Assembly: System (in System.dll)
Property Value
Type: System.StringThe 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 Nothing, cleared the Query property, and setting the Fragment property to Nothing 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.