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