pipeclient class : Get(string) method
Description
Gets the value of the item.
Syntax
pipeclientInstance.Get(string itemName)
Arguments
Class | Name | Description |
string | itemName | A item name. |
Return value
Class | Description |
string | A value of the item. |
Sample code
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". |
Notes
None
Links for reference
None