Table of Contents

Method FindServiceTemplates

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

FindServiceTemplates(ServiceFilter)

Retrieves the service templates matching the specified service filter.

public Service[] FindServiceTemplates(ServiceFilter filter)

Parameters

filter ServiceFilter

The service filter.

Returns

Service[]

The service templates matching the specified service filter.

Examples

ServiceFilter filter = new ServiceFilter{ CriticalOnly = true};
Service[] services = engine.FindServiceTemplates(filter);