1 write to _proxyOperationManager
Microsoft.TestPlatform.CrossPlatEngine (1)
Client\ProxyExecutionManager.cs (1)
118_proxyOperationManager = new ProxyOperationManager(requestData, requestSender, testHostManager, testHostManagerFramework, this);
23 references to _proxyOperationManager
Microsoft.TestPlatform.CrossPlatEngine (23)
Client\ProxyExecutionManager.cs (23)
55TPDebug.Assert(_proxyOperationManager is not null, "_proxyOperationManager is null"); 56return _proxyOperationManager.CancellationTokenSource; 60TPDebug.Assert(_proxyOperationManager is not null, "_proxyOperationManager is null"); 61_proxyOperationManager.CancellationTokenSource = value; 133TPDebug.Assert(_proxyOperationManager is not null, "_proxyOperationManager is null"); 146_isCommunicationEstablished = _proxyOperationManager.SetupChannel( 152_proxyOperationManager.CancellationTokenSource.Token.ThrowTestPlatformExceptionIfCancellationRequested(); 193TPDebug.Assert(_proxyOperationManager is not null, "ProxyOperationManager is null."); 220var runsettings = _proxyOperationManager.RemoveNodesFromRunsettingsIfRequired( 231_proxyOperationManager.RequestSender.StartTestRun(runRequest, this); 240_proxyOperationManager.RequestSender.StartTestRun(runRequest, this); 288if (_proxyOperationManager == null) 294_proxyOperationManager.CancellationTokenSource.Cancel(); 297_proxyOperationManager.RequestSender.SendTestRunCancel(); 308if (_proxyOperationManager == null) 314_proxyOperationManager.CancellationTokenSource.Cancel(); 318_proxyOperationManager.RequestSender.SendTestRunAbort(); 326if (_proxyOperationManager == null) 332_proxyOperationManager.Close(); 347attachDebuggerInfo.TargetFramework ??= _proxyOperationManager?.TestHostManagerFramework?.ToString(); 398var telemetryOptedIn = _proxyOperationManager?.RequestData?.IsTelemetryOptedIn == true ? "true" : "false"; 417return _proxyOperationManager?.SetupChannel(sources, runSettings) ?? false; 448_proxyOperationManager?.RequestSender.InitializeExecution(platformExtensions);