uri class : Fragment getter
Description
Gets the escaped URI fragment.
Syntax
uriInstance.Fragment
Arguments
None.
Return value
Class | Description |
string | The escaped URI fragment. |
Sample code
1: | uri u = new uri("http://www.example.com/aaa/bbb.html#top"); |
2: | string frag = u.Fragment; |
Notes
It's a wrapper of the System.Uri.Fragment property.