Creates or resets the integer value associated with the specified key in the Shared Data Server.
Namespace: Facilita.Fc.RuntimeAssembly: fc_clr (in fc_clr.dll) Version: 9.5.7.98
Syntax
Parameters
- key
- Type: System String
The key against which value will be stored.
- value
- Type: System Int32
The value to be stored.
Remarks
Note |
---|
The keys are case-sensitive. |
Examples
using Facilita.Fc.Runtime; SharedData sharedData = new SharedData(GetString("sharedDataHost", "localhost"), GetInt("sharedDataPort", 5099)); sharedData.SetInt("AccountNum", 12345678);
See Also