Method FindElements
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
FindElements(ElementFilter)
Retrieves all elements matching the specified filter.
Element[] FindElements(ElementFilter filter)
Parameters
filter
ElementFilterThe element filter.
Returns
- Element[]
The elements matching the specified filter.
Examples
ElementFilter myElementFilter = new ElementFilter { MajorOnly=true };
Element[] elements = engine.FindElements(myElementFilter);