pipeclient class : Get(string) method

Description

Gets the value of the item.

Syntax

pipeclientInstance.Get(string itemName)

Arguments

ClassNameDescription
stringitemNameA item name.

Return value

ClassDescription
stringA 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

Copyright © Cooker All rights reserved.