uri クラス : Host ゲッタ

説明

URIのホスト部分を取得します。

構文

uriInstance.Host

引数

無し。

返り値

クラス説明
stringURIのホスト部分。

サンプルコード

1:

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

2:

string hostString = u.Host;

注意

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

参照リンク

Copyright © Cooker All rights reserved.