In automation (C#) one can retrieve the ‘primary’ polling ip using the ‘dummy.PollingIP’ statement.
However this returns only the ‘primary’ polling ip.
Some protocols have multiple polling intrerfaces though (either for redundancy or to retrieve info from different targets).
Is there any (supported) way to retrive info on the additional polling nterfaces ?
Hi Hans,
You can find the port info in the ElementInfo property:
var myElement = engine.FindElement("MyElement");
var myElementInfo = myElement.ElementInfo;
var mainPollingIp = myElementInfo.MainPort?.PollingIPAddress;
var otherPollingIps = myElementInfo.ExtraPorts?.Select(p => p.PollingIPAddress);