Table of Contents

Method FindServicesInView

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

FindServicesInView(string)

Retrieves all services in the view with the specified name.

public Service[] FindServicesInView(string viewName)

Parameters

viewName string

The view name.

Returns

Service[]

The services in the specified view.

Examples

Service[] services = engine.FindServicesInView("MySpecialView");

FindServicesInView(int)

Retrieves all services in the view with the specified ID.

public Service[] FindServicesInView(int viewID)

Parameters

viewID int

The view ID.

Returns

Service[]

The services in the specified view.

Examples

Service[] services = engine.FindServicesInView(19);