pipe クラス : ChannelName ゲッタ

説明

チャンネル名を取得します。

構文

pipeInstance.ChannelName

引数

無し。

返り値

クラス説明
stringチャンネル名。

サンプルコード

1:

pipe p = new pipe();

2:

string cn = p.ChannelName; // ""

3:

p = new pipe("newchannel");

4:

cn = p.ChannelName; // "newchannel"

注意

未初期化のインスタンスに対してこのゲッタを呼び出すと、空文字列が返ります。

参照リンク

無し。

Copyright © Cooker All rights reserved.