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
iDMAId
intThe DataMiner Agent ID of the element.
iEId
intThe element ID of the element.
nameFilter
stringThe name filter.
customName
booltrue
ifnameFilter
refers to the custom name; otherwise,false
.exported
booltrue
to 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);
Remarks
Feature introduced in DataMiner 8.5.8 (RN 10066).
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
iDMAId
intThe DataMiner Agent ID of the element.
iEId
intThe element ID of the element.
nameFilter
stringThe name filter.
customName
booltrue
ifnameFilter
refers 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
iDMAId
intThe DataMiner Agent ID of the element.
iEId
intThe element ID of the element.
exported
booltrue
to 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);
Remarks
Feature introduced in DataMiner 8.5.8 (RN 10066).
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.