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