uri クラス : AbsolutePath ゲッタ

説明

URIの絶対パスを取得します。

構文

uriInstance.AbsolutePath

引数

無し。

返り値

クラス説明
stringURIの絶対パス。

サンプルコード

1:

uri u = new uri("http://www.example.com/aaa/bbb.html");

2:

string absolutePath = u.AbsolutePath;

注意

これは、System.Uri.AbsolutePath プロパティのラッパーです。

参照リンク

Copyright © Cooker All rights reserved.