pipeclient class : Set(string,string) method
Description
Sets the value for the item.
Syntax
pipeclientInstance.Set(string itemName, string value)
Arguments
Class | Name | Description |
string | itemName | A item name. |
string | value | A value. |
Return value
None
Sample code
1: | pipe p = new pipe("newchannel"); |
2: | pipeclient pClient = new pipeclient("newchannel"); |
3: | pClient.Set("item1", "item1_value"); |
Notes
None
Links for reference
None