Set data with an associated key name.

Namespace:  LeCouteauSuisse.API
Assembly:  LeCouteauSuisseAPI (in LeCouteauSuisseAPI.dll) Version: 1.0.0.2 (1.0.0.2)

Syntax

C#
public void SetData(
	string key,
	Object value
)
Visual Basic (Declaration)
Public Sub SetData ( _
	key As String, _
	value As Object _
)
Visual C++
public:
void SetData(
	String^ key, 
	Object^ value
)

Parameters

key
Type: System..::.String
Key name of the data
value
Type: System..::.Object
Value to store

Remarks

If no data exist with this key the data is added. If a data already exist with this key, the data is overwrite with the new value.

See Also