uri クラス : AbsolutePath ゲッタ
説明
URIの絶対パスを取得します。
構文
uriInstance.AbsolutePath
引数
無し。
返り値
クラス | 説明 |
string | URIの絶対パス。 |
サンプルコード
1: | uri u = new uri("http://www.example.com/aaa/bbb.html"); |
2: | string absolutePath = u.AbsolutePath; |
注意
これは、System.Uri.AbsolutePath プロパティのラッパーです。