Exemplo n.º 1
0
        private ChildProcess SpawnNewProcess()
        {
            var ipcClient            = new NamedPipesClient();
            var requestResponseClent = new NamedPipesRequestResponseClient(ipcClient);
            var childProcess         = new ChildProcess(requestResponseClent);

            childProcess.Start();

            return(childProcess);
        }
Exemplo n.º 2
0
 public ChildProcess(NamedPipesRequestResponseClient ipcClient)
 {
     _ipcClient = ipcClient;
     _process   = CreateProcess();
 }