Method FindService
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
FindService(string)
Retrieves the service with the specified name.
Service FindService(string name)
Parameters
name
stringThe service name.
Returns
Examples
Service myService = engine.FindService("MyService");
FindService(int, int)
Retrieves the service with the specified ID.
Service FindService(int dmaID, int serviceID)
Parameters
Returns
Examples
Service myService = engine.FindService(3, 56);