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)
55
TPDebug.Assert(
_proxyOperationManager
is not null, "_proxyOperationManager is null");
56
return
_proxyOperationManager
.CancellationTokenSource;
60
TPDebug.Assert(
_proxyOperationManager
is not null, "_proxyOperationManager is null");
61
_proxyOperationManager
.CancellationTokenSource = value;
133
TPDebug.Assert(
_proxyOperationManager
is not null, "_proxyOperationManager is null");
146
_isCommunicationEstablished =
_proxyOperationManager
.SetupChannel(
152
_proxyOperationManager
.CancellationTokenSource.Token.ThrowTestPlatformExceptionIfCancellationRequested();
193
TPDebug.Assert(
_proxyOperationManager
is not null, "ProxyOperationManager is null.");
220
var runsettings =
_proxyOperationManager
.RemoveNodesFromRunsettingsIfRequired(
231
_proxyOperationManager
.RequestSender.StartTestRun(runRequest, this);
240
_proxyOperationManager
.RequestSender.StartTestRun(runRequest, this);
288
if (
_proxyOperationManager
== null)
294
_proxyOperationManager
.CancellationTokenSource.Cancel();
297
_proxyOperationManager
.RequestSender.SendTestRunCancel();
308
if (
_proxyOperationManager
== null)
314
_proxyOperationManager
.CancellationTokenSource.Cancel();
318
_proxyOperationManager
.RequestSender.SendTestRunAbort();
326
if (
_proxyOperationManager
== null)
332
_proxyOperationManager
.Close();
347
attachDebuggerInfo.TargetFramework ??=
_proxyOperationManager
?.TestHostManagerFramework?.ToString();
398
var telemetryOptedIn =
_proxyOperationManager
?.RequestData?.IsTelemetryOptedIn == true ? "true" : "false";
417
return
_proxyOperationManager
?.SetupChannel(sources, runSettings) ?? false;
448
_proxyOperationManager
?.RequestSender.InitializeExecution(platformExtensions);