AeRedActiveConnectorName Property

General info

Label

Active Connector Name

Description

Current active connector name for redundant event filtering.

Data type

String

Type

Regular

Code

711

Symbolic name

MODEL_PROP_AEREDACTIVECONNECTORNAME

Lua access code

syslib.model.properties.AeRedActiveConnectorName

Available since

1.0

Parent properties

AeRedundancyInfo

Attributes

Name Tooltip
PROP_VISIBLE The property is visible in DataStudio and can be read by the inmation APIs.
PROP_VOLATILE The property exists during runtime of the service only and is not saved to the image.

Examples

Read from or write to the AeRedActiveConnectorName property.

  • Lua

  • C#

-- Read from the AeRedActiveConnectorName
syslib.getvalue("<OBJECT FULL PATH>.AeRedundancyInfo.AeRedActiveConnectorName")

-- Write to the AeRedActiveConnectorName
syslib.setvalue("<OBJECT FULL PATH>.AeRedundancyInfo.AeRedActiveConnectorName", "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 AeRedActiveConnectorName
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.AeRedundancyInfo.AeRedActiveConnectorName"));
// Write to the AeRedActiveConnectorName
Result result = sli.WriteValue(sc, new WriteItem("new value", "<OBJECT FULL PATH>.AeRedundancyInfo.AeRedActiveConnectorName"));