Hi,
I'm currently working on a task where I need to add or delete some DCF Properties within an element and, I'm wondering if there is a property or a method similar to:
public Dictionary<int, ConnectivityInterface> ConnectivityInterfaces { get; }
From where I can get all the DCF interface properties.
Hi Mário,
When you have the interface (instance of class ConnectivityInterface) you can use property InterfaceProperties which will return Dictionary<int, ConnectivityInterfaceProperty>
What you can do is read out table [Interface Properties] (PID 65054) which is available on page General Parameters > DataMiner Connectivity Framework with the common protocol calls.
Please note that these tables are maintained by software and that it’s possible that these can change.
Hi Jens, I have followed that approach.
It would be nice if we could get access to all the properties the same way we do for the interfaces or at least if we could retrieve them via a getcolumns.
Either way thanks.