public RestartableOutOfProcessController(IOutOfProcessFactory Factory, OutOfProcessServerOptions?ServerOptions = default, OutOfProcessClientOptions?ClientOptions = default)
 {
     this.Factory       = Factory;
     this.ServerOptions = ServerOptions;
     this.ClientOptions = ClientOptions;
 }
 public RestartableOutOfProcessFactory(IOutOfProcessFactory Child)
 {
     this.Child = Child;
 }