Method GetConnectivityInterfaces
GetConnectivityInterfaces(int, int, string, bool, bool)
Retrieves the DCF interfaces of the specified element that match the specified name filter.
Dictionary<int, ConnectivityInterface> GetConnectivityInterfaces(int iDMAId, int iEId, string nameFilter, bool customName, bool exported)
Parameters
iDMAIdintThe DataMiner Agent ID of the element.
iEIdintThe element ID of the element.
nameFilterstringThe name filter.
customNamebooltrueifnameFilterrefers to the custom name; otherwise,false.exportedbooltrueto include interfaces of DVE children; otherwise,false.
Returns
- Dictionary<int, ConnectivityInterface>
The matching DCF interfaces.
Examples
Dictionary<int, ConnectivityInterface> interfaces = protocol.GetConnectivityInterfaces(400, 2000, "Input*", true, false);
GetConnectivityInterfaces(int, int, string, bool)
Retrieves the DCF interfaces of the specified element that match the specified name filter.
Dictionary<int, ConnectivityInterface> GetConnectivityInterfaces(int iDMAId, int iEId, string nameFilter, bool customName)
Parameters
iDMAIdintThe DataMiner Agent ID of the element.
iEIdintThe element ID of the element.
nameFilterstringThe name filter.
customNamebooltrueifnameFilterrefers to the custom name; otherwise,false.
Returns
- Dictionary<int, ConnectivityInterface>
The matching DCF interfaces.
Examples
Dictionary<int, ConnectivityInterface> interfaces = protocol.GetConnectivityInterfaces(400, 2000, "Input*", true);
GetConnectivityInterfaces(int, int, bool)
Retrieves the DCF interfaces of the specified element.
Dictionary<int, ConnectivityInterface> GetConnectivityInterfaces(int iDMAId, int iEId, bool exported)
Parameters
iDMAIdintThe DataMiner Agent ID of the element.
iEIdintThe element ID of the element.
exportedbooltrueto include interfaces of DVE children; otherwise,false.
Returns
- Dictionary<int, ConnectivityInterface>
The matching DCF interfaces.
Examples
Dictionary<int, ConnectivityInterface> interfaces = protocol.GetConnectivityInterfaces(400, 2000, false);
GetConnectivityInterfaces(int, int)
Retrieves the DCF interfaces of the specified element.
Dictionary<int, ConnectivityInterface> GetConnectivityInterfaces(int iDMAId, int iEId)
Parameters
Returns
- Dictionary<int, ConnectivityInterface>
The DCF interfaces.
Examples
Dictionary<int, ConnectivityInterface> interfaces = protocol.GetConnectivityInterfaces(400, 2000);
Remarks
This will not include the interfaces of the DVE children.