ITLogDiagnosticsCallStatus Property
General info
Label |
Call Status |
Description |
The most recent status of the IT Log object. |
Data type |
String |
Type |
Regular |
Code |
2614 |
Symbolic name |
MODEL_PROP_ITLOGDIAGNOSTICSCALLSTATUS |
Lua access code |
syslib.model.properties.ITLogDiagnosticsCallStatus |
Available since |
1.30.6.4266 |
- Parent properties
Examples
Read from or write to the ITLogDiagnosticsCallStatus
property.
-- Read from the ITLogDiagnosticsCallStatus
syslib.getvalue("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsCallStatus")
-- Write to the ITLogDiagnosticsCallStatus
syslib.setvalue("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsCallStatus", "new value")
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "<username>", Password = "<password>" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the ITLogDiagnosticsCallStatus
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsCallStatus"));
// Write to the ITLogDiagnosticsCallStatus
Result result = sli.WriteValue(sc, new WriteItem("new value", "<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsCallStatus"));