Table of Contents

Method GetConnectivityInterfaces

Namespace
Skyline.DataMiner.Scripting
Assembly
SLManagedScripting.dll

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 int

The DataMiner Agent ID of the element.

iEId int

The element ID of the element.

nameFilter string

The name filter.

customName bool

true if nameFilter refers to the custom name; otherwise, false.

exported bool

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

The DataMiner Agent ID of the element.

iEId int

The element ID of the element.

nameFilter string

The name filter.

customName bool

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

The DataMiner Agent ID of the element.

iEId int

The element ID of the element.

exported bool

true 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

iDMAId int

The DataMiner Agent ID of the element.

iEId int

The element ID of the element.

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.