pipeclient class : direct setter call
Description
Sets a item's value using Rice's setter call notation.
Syntax
pipeClientInstance.itemName = value
Assigned value
| Class | Description |
| string | A item's value |
Return value
None.
Sample code
| 1: | pipe p = new pipe("newchannel"); |
| 2: | pipeclient pClient = new pipeclient("newchannel"); |
| 3: | pClient.item1 = "item1_value"; |
| 4: | string val = pClient.Get("item1"); // The val is "item1_value". |
Notes
None.
Links for reference
None.


