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

説明

項目名のリストを取得します。

構文

pipeclientInstance.Keys()

引数

無し。

返り値

クラス説明
list{string}項目名のリスト。

サンプルコード

1:

pipe p = new pipe("newchannel");

2:

pipeclient pClient = new pipeclient("newchannel");

3:

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

4:

pClient.Set("item2", "item2_value");

5:

list{string} keys = pClient.Keys(); // "item1", "item2".

注意

項目が無い場合は、空のリストが返ります。

参照リンク

無し。

Copyright © Cooker All rights reserved.