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

説明

項目名に対応した値を取得します。

構文

pipeclientInstance.Get(string itemName)

引数

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

返り値

クラス説明
string項目の値。

サンプルコード

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".

注意

無し。

参照リンク

無し。

Copyright © Cooker All rights reserved.