Opc.Ua.Configuration.ServiceManager.PauseService C# (CSharp) 메소드

PauseService() 공개 정적인 메소드

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
리턴 bool
        public static bool PauseService(string serviceName)
        {
            return PauseService(serviceName, TimeSpan.Zero);
        }
        #endregion

Same methods

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