Method GetConnectivityConnections
GetConnectivityConnections(int, int, string, bool)
Retrieves the DCF connections that are known by the specified element and that match the specified name filter.
Dictionary<int, ConnectivityConnection> GetConnectivityConnections(int iDMAId, int iEId, string nameFilter, bool exported)
Parameters
iDMAIdintThe DataMiner Agent ID of the element.
iEIdintThe element ID of the element.
nameFilterstringThe name filter.
exportedbooltrueto include connections of DVE children; otherwise,false.
Returns
- Dictionary<int, ConnectivityConnection>
The DCF connections that are known by the specified element and that match the specified name filter. Returns null when the specified element is stopped or unavailable.
Examples
Dictionary<int, ConnectivityConnection> connections = protocol.GetConnectivityConnections(400, 2000, "Input*", false);
Remarks
Feature introduced in DataMiner 8.5.8 (RN 10066).
GetConnectivityConnections(int, int, string)
Retrieves the DCF connections that are known by the specified element and that match the specified name filter.
Dictionary<int, ConnectivityConnection> GetConnectivityConnections(int iDMAId, int iEId, string nameFilter)
Parameters
iDMAIdintThe DataMiner Agent ID of the element.
iEIdintThe element ID of the element.
nameFilterstringThe name filter.
Returns
- Dictionary<int, ConnectivityConnection>
The DCF connections that are known by the specified element and that match the specified name filter. Returns null when the specified element is stopped or unavailable.
Examples
Dictionary<int, ConnectivityConnection> connections = protocol.GetConnectivityConnections(400, 2000, "Input*");
GetConnectivityConnections(int, int, bool)
Retrieves the DCF connections that are known by the specified element.
Dictionary<int, ConnectivityConnection> GetConnectivityConnections(int iDMAId, int iEId, bool exported)
Parameters
iDMAIdintThe DataMiner Agent ID of the element.
iEIdintThe element ID of the element.
exportedbooltrueto include connections of DVE children; otherwise,false.
Returns
- Dictionary<int, ConnectivityConnection>
The DCF connections that are known by the specified element. Returns null when the specified element is stopped or unavailable.
Examples
Dictionary<int, ConnectivityConnection> connections = protocol.GetConnectivityConnections(400, 2000, true);
Remarks
Feature introduced in DataMiner 8.5.8 (RN 10066).
GetConnectivityConnections(int, int)
Retrieves the DCF connections that are known by the specified element.
Dictionary<int, ConnectivityConnection> GetConnectivityConnections(int iDMAId, int iEId)
Parameters
Returns
- Dictionary<int, ConnectivityConnection>
The DCF connections that are known by the specified element. Returns null when the specified element is stopped or unavailable.
Examples
Dictionary<int, ConnectivityConnection> connections = protocol.GetConnectivityConnections(400, 2000);