public void Bind(HostCore connection, IRemoteUnityDriver service, EndPointMap endPoints)
        {
            _connection = connection;
            _service    = service;


            BindClientCallbacks();
            BindHostMethodEndPoints(endPoints);
        }
 private UnityDriverHostProcess(
     CancellationTokenSource cancel,
     IRemoteUnityDriver driver,
     Task agentProcess
     )
 {
     _agentProcess = agentProcess;
     _cancel       = cancel;
     _driver       = driver;
 }