Start() 공개 메소드

public Start ( ) : void
리턴 void
예제 #1
0
        public static void StartService(IEnumerable<string> activeModules) {
            if (_service != null) {
                StopService();
            }

            _service = new RestService("restservice", _urls, _commands, activeModules);
            _service.Start();
        }
예제 #2
0
        public static void StartService(IEnumerable <string> activeModules)
        {
            if (_service != null)
            {
                StopService();
            }

            _service = new RestService("restservice", _urls, _commands, activeModules);
            _service.Start();
        }