Ejemplo n.º 1
0
        /// <summary>
        /// Runs the application as a simple console application.
        /// </summary>
        private static void RunConsoleApplication()
        {
            Console.WriteLine(Const.Messages.ServiceStartRequested);

            var control = new ServiceControl();

            control.Start();

            Console.WriteLine(Const.Messages.PressAnyKeyToStop);
            Console.ReadKey();

            control.Stop();
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Runs the application as a simple console application.
        /// </summary>
        private static void RunConsoleApplication()
        {
            Console.WriteLine(Const.Messages.ServiceStartRequested);

            var control = new ServiceControl();

            control.Start();

            Console.WriteLine(Const.Messages.PressAnyKeyToStop);
            Console.ReadKey();

            control.Stop();
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Handles the 'stop' service control command.
 /// </summary>
 protected override void OnStop()
 {
     _service.Stop();
 }