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

説明

チャンネルの全ての項目を削除します。

構文

pipeclientInstance.Clear()

引数

無し。

返り値

無し。

サンプルコード

1:

pipe p = new pipe("newchannel");

2:

pipeclient pClient = new pipeclient("newchannel");

3:

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

4:

string val = pClient.Get("item1"); // The val is "item1_value".

5:

pClient.Clear(); // It clears all item.

注意

無し。

参照リンク

無し。

Copyright © Cooker All rights reserved.