Table of Contents

Method GetConnectivityConnections

Namespace
Skyline.DataMiner.Scripting
Assembly
SLManagedScripting.dll

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 int

The DataMiner Agent ID of the element.

iEId int

The element ID of the element.

nameFilter string

The name filter.

exported bool

true 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 int

The DataMiner Agent ID of the element.

iEId int

The element ID of the element.

nameFilter string

The 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 int

The DataMiner Agent ID of the element.

iEId int

The element ID of the element.

exported bool

true 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

iDMAId int

The DataMiner Agent ID of the element.

iEId int

The element ID of the element.

Returns

Dictionary<int, ConnectivityConnection>

The DCF connections that are known by the specified element.

Examples

Dictionary<int, ConnectivityConnection> connections = protocol.GetConnectivityConnections(400, 2000);