Fragment Property
Collapse the table of content
Expand the table of content

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.

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

'Declaration
Public Property Fragment As String

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 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.

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


        Dim uBuild As New UriBuilder("http://www.contoso.com/")
        uBuild.Path = "index.htm"
        uBuild.Fragment = "main"

        Dim myUri As Uri = uBuild.Uri

        outputBlock.Text &= "Uri: "
        outputBlock.Text &= myUri.ToString()
        outputBlock.Text &= vbCrLf



Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft