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


