InteractiveStop() public method

public InteractiveStop ( ) : void
return void
Exemplo n.º 1
0
        private static void RunInteractive(TodoSelfHostService service, string[] args)
        {
            service.InteractiveStart(args);

            Console.WriteLine("Self-host server running...");
            Console.WriteLine("Press any key to stop.");
            Console.ReadLine();

            service.InteractiveStop();
        }
Exemplo n.º 2
0
        private static void RunInteractive(TodoSelfHostService service, string[] args)
        {
            service.InteractiveStart(args);

            Console.WriteLine("Self-host server running...");
            Console.WriteLine("Press any key to stop.");
            Console.ReadLine();

            service.InteractiveStop();
        }