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
viewIDintThe 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
viewNamestringThe view name.
Returns
- Service[]
The services in the specified view.
Examples
Service[] services = engine.FindServicesInView("MySpecialView");