TransferContext Property
General info
Label |
Transfer Context |
Description |
When switched on, the context transmission (description, limits, engineering unit) from the source tag is executed |
Data type |
Boolean |
Default value |
true |
Type |
Regular |
Code |
5310 |
Symbolic name |
MODEL_PROP_TRANSFERCONTEXT |
Lua access code |
inmation.model.properties.TransferContext |
Available since |
1.48.0.6986 |
- Parent classes
- Parent properties
Attributes
Name | Tooltip |
---|---|
PROP_CONFIGURABLE | The property is configurable and can be changed with DataStudio and the various inmation APIs |
PROP_VISIBLE | The property is visible in DataStudio and can be read by the inmation APIs |
PROP_HAS_DEFAULT | The property has a default value as standard |
Examples
Read from or write to the TransferContext
property.
-- Read from the TransferContext
inmation.getvalue("<OBJECT FULL PATH>.TransferContext")
-- Write to the TransferContext
inmation.setvalue("<OBJECT FULL PATH>.TransferContext", true)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "so", Password = "inmation" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the TransferContext
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.TransferContext"));
// Write to the TransferContext
Result result = sli.WriteValue(sc, new WriteItem(true, "<OBJECT FULL PATH>.TransferContext"));