pipeclient class : Values() method
Description
Gets a list of item values.
Syntax
pipeclientInstance.Values()
Arguments
None
Return value
Class | Description |
list{string} | A list of item values. |
Sample code
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} values = pClient.Values(); // "item1_value", "item2_value". |
Notes
If there are no items, an empty list is returned.
Links for reference
None