Table of Contents

Method FindServices

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

FindServices(ServiceFilter)

Retrieves all services matching the specified filter.

public Service[] FindServices(ServiceFilter filter)

Parameters

filter ServiceFilter

The service filter.

Returns

Service[]

The services matching the specified filter.

Examples

ServiceFilter myServiceFilter = ServiceFilter.ByView("MyView");
Service[] services = engine.FindServices(myServiceFilter);