Method FindServicesInView
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
FindServicesInView(int)
Retrieves all services in the view with the specified ID.
Service[] FindServicesInView(int viewID)
Parameters
viewID
intThe view ID.
Returns
- Service[]
The services in the specified view.
Examples
Service[] services = engine.FindServicesInView(19);
FindServicesInView(string)
Retrieves all services in the view with the specified name.
Service[] FindServicesInView(string viewName)
Parameters
viewName
stringThe view name.
Returns
- Service[]
The services in the specified view.
Examples
Service[] services = engine.FindServicesInView("MySpecialView");