Ejemplo n.º 1
0
        private static void Main(string[] args)
        {
            var server = new Server {
                Services = { ProcessCreationService.BindService(_serverService) },
                Ports    = { new ServerPort("localhost", Port, ServerCredentials.Insecure) }
            };

            server.Start();
            Console.WriteLine("Process Creation Server listening on port " + Port);
            ReadCommands();

            server.ShutdownAsync().Wait();
        }