Table of Contents

Method GetInterfacesByName

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

GetInterfacesByName(string, bool)

Retrieves the DCF interfaces that match the specified filter.

public virtual Interface[] GetInterfacesByName(string filter, bool custom)

Parameters

filter string

The interface name filter. Can contain wildcards.

custom bool

true if the custom names should be checked; otherwise, false.

Returns

Interface[]

The DCF interfaces that match the specified filter.

Examples

Element element = engine.FindElement(400, 2000);
var interfaces = element.GetInterfacesByName("MyInterface *", true);

Remarks

Feature introduced in DataMiner 8.5.3 (RN 8867).

If custom is set to false, the name is checked.