2 instantiations of TestProcessAttachDebuggerPayload
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\TestProcessAttachDebuggerPayloadConverter.cs (1)
36return new TestProcessAttachDebuggerPayload(processId) { TargetFramework = targetFramework };
Microsoft.TestPlatform.CrossPlatEngine (1)
EventHandlers\TestRequestHandler.cs (1)
311new TestProcessAttachDebuggerPayload(attachDebuggerInfo.ProcessId)
8 references to TestProcessAttachDebuggerPayload
Microsoft.TestPlatform.CommunicationUtilities (8)
Messages\MessageType.cs (1)
187[ProtocolVersion(Version3, typeof(TestProcessAttachDebuggerPayload))]
Serialization\TestProcessAttachDebuggerPayloadConverter.cs (4)
15/// JSON converter for <see cref="TestProcessAttachDebuggerPayload"/> that handles the constructor 18internal class TestProcessAttachDebuggerPayloadConverter : JsonConverter<TestProcessAttachDebuggerPayload> 21public override TestProcessAttachDebuggerPayload? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) 40public override void Write(Utf8JsonWriter writer, TestProcessAttachDebuggerPayload value, JsonSerializerOptions options)
TestRequestSender.cs (3)
581var testProcessAttachDebuggerPayload = _dataSerializer.DeserializePayload<TestProcessAttachDebuggerPayload>(message); 831internal static AttachDebuggerInfo ConvertToAttachDebuggerInfo(TestProcessAttachDebuggerPayload attachDebuggerPayload, Message message, int protocolVersion)