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
filterstringThe interface name filter. Can contain wildcards.
custombooltrueif the custom names should be checked; otherwise,false.
Returns
- Interface[]
The DCF interfaces that match the specified filter.
Examples
var dummy = engine.GetDummy("dummy1");
var interfaces = dummy.GetInterfacesByName("MyInterface *", true);
Remarks
Feature introduced in DataMiner 8.5.3 (RN 8867).
If custom is set to false, the name is checked.