Method FindServices
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
FindServices(ServiceFilter)
Retrieves all services matching the specified filter.
Service[] FindServices(ServiceFilter filter)
Parameters
filter
ServiceFilterThe service filter.
Returns
- Service[]
The services matching the specified filter.
Examples
ServiceFilter myServiceFilter = ServiceFilter.ByView("MyView");
Service[] services = engine.FindServices(myServiceFilter);