uri クラス : Scheme ゲッタ

説明

URIのスキーム名を取得します。

構文

uriInstance.Scheme

引数

無し。

返り値

クラス説明
stringURIのスキーム名。

サンプルコード

1:

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

2:

string scheme = u.Scheme;

注意

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

参照リンク

Copyright © Cooker All rights reserved.