5 implementations of AttachDebuggerToProcess
Microsoft.TestPlatform.CommunicationUtilities (1)
EventHandlers\TestRunEventsHandler.cs (1)
102public bool AttachDebuggerToProcess(AttachDebuggerInfo attachDebuggerInfo)
Microsoft.TestPlatform.CrossPlatEngine (3)
Client\Parallel\ParallelRunEventsHandler.cs (1)
196public bool AttachDebuggerToProcess(AttachDebuggerInfo attachDebuggerInfo)
Client\ProxyExecutionManager.cs (1)
404public bool AttachDebuggerToProcess(AttachDebuggerInfo attachDebuggerInfo)
DataCollection\DataCollectionTestRunEventsHandler.cs (1)
186public bool AttachDebuggerToProcess(AttachDebuggerInfo attachDebuggerInfo)
Microsoft.VisualStudio.TestPlatform.Client (1)
Execution\TestRunRequest.cs (1)
658public bool AttachDebuggerToProcess(AttachDebuggerInfo attachDebuggerInfo)
5 references to AttachDebuggerToProcess
Microsoft.TestPlatform.CommunicationUtilities (1)
TestRequestSender.cs (1)
584bool result = testRunEventsHandler.AttachDebuggerToProcess(attachDebugerInfo);
Microsoft.TestPlatform.CrossPlatEngine (4)
Adapter\FrameworkHandle.cs (1)
113return _testRunEventsHandler.AttachDebuggerToProcess(attachDebuggerInfo);
Client\Parallel\ParallelRunEventsHandler.cs (1)
198return _actualRunEventsHandler.AttachDebuggerToProcess(attachDebuggerInfo);
Client\ProxyExecutionManager.cs (1)
416return _baseTestRunEventsHandler?.AttachDebuggerToProcess(attachDebuggerInfo) ?? false;
DataCollection\DataCollectionTestRunEventsHandler.cs (1)
188return _testRunEventsHandler.AttachDebuggerToProcess(attachDebuggerInfo);