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
iDMAId
intThe DataMiner Agent ID of the element.
iEId
intThe element ID of the element.
nameFilter
stringThe name filter.
exported
booltrue
to 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.
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
iDMAId
intThe DataMiner Agent ID of the element.
iEId
intThe element ID of the element.
nameFilter
stringThe name filter.
Returns
- Dictionary<int, ConnectivityConnection>
The DCF connections that are known by the specified element and that match the specified name filter.
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
iDMAId
intThe DataMiner Agent ID of the element.
iEId
intThe element ID of the element.
exported
booltrue
to include connections of DVE children; otherwise,false
.
Returns
- Dictionary<int, ConnectivityConnection>
The DCF connections that are known by the specified element.
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.
Examples
Dictionary<int, ConnectivityConnection> connections = protocol.GetConnectivityConnections(400, 2000);