pipeclient クラス : Remove(string) メソッド

説明

指定した項目を削除します。

構文

pipeclientInstance.Remove(string itemName)

引数

クラス名前説明
stringitemName項目名。

返り値

クラス説明
bool削除出来たかどうかを示す値。

サンプルコード

1:

pipe p = new pipe("newchannel");

2:

pipeclient pClient = new pipeclient("newchannel");

3:

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

4:

bool succ = pClient.Remove("item1"); // true.

5:

succ = pClient.Remove("item2"); // false.

注意

削除が成功した場合、trueが返ります。そうでなければ、falseが返ります。

参照リンク

無し。

Copyright © Cooker All rights reserved.