pipeclient クラス : Count() メソッド

説明

チャンネルの項目数を取得します。

構文

pipeclientInstance.Count()

引数

無し。

返り値

クラス説明
int項目数。

サンプルコード

1:

pipe p = new pipe("newchannel");

2:

pipeclient pClient = new pipeclient("newchannel");

3:

int count = pClient.Count(); // The count is 0.

4:

pClient.Set("item1", "item1_value");

5:

count = pClient.Count(); // The count is 1.

注意

無し。

参照リンク

無し。

Copyright © Cooker All rights reserved.