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


