2 instantiations of TestProcessAttachDebuggerPayload
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\TestProcessAttachDebuggerPayloadConverter.cs (1)
36
return new
TestProcessAttachDebuggerPayload
(processId) { TargetFramework = targetFramework };
Microsoft.TestPlatform.CrossPlatEngine (1)
EventHandlers\TestRequestHandler.cs (1)
311
new
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
18
internal class TestProcessAttachDebuggerPayloadConverter : JsonConverter<
TestProcessAttachDebuggerPayload
>
21
public override
TestProcessAttachDebuggerPayload
? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
40
public override void Write(Utf8JsonWriter writer,
TestProcessAttachDebuggerPayload
value, JsonSerializerOptions options)
TestRequestSender.cs (3)
581
var
testProcessAttachDebuggerPayload = _dataSerializer.DeserializePayload<
TestProcessAttachDebuggerPayload
>(message);
831
internal static AttachDebuggerInfo ConvertToAttachDebuggerInfo(
TestProcessAttachDebuggerPayload
attachDebuggerPayload, Message message, int protocolVersion)