Opc.Ua.Configuration.ServiceManager.PauseService C# (CSharp) Method

PauseService() public static method

Pause the service with the given name. This method returns as soon as the Pause method on the service is called and does not guarantee the paused status of the service.
public static PauseService ( string serviceName ) : bool
serviceName string The name of the service
return bool
        public static bool PauseService(string serviceName)
        {
            return PauseService(serviceName, TimeSpan.Zero);
        }
        #endregion

Same methods

ServiceManager::PauseService ( string serviceName, System.TimeSpan timeout ) : bool