10 references to HighestSupportedVersion
Microsoft.TestPlatform.CommunicationUtilities (8)
DataCollectionRequestHandler.cs (1)
309
? Math.Min(message.Version, ProtocolVersioning.
HighestSupportedVersion
)
DataCollectionRequestSender.cs (2)
123
_communicationManager.SendMessage(MessageType.BeforeTestRunStart, payload, ProtocolVersioning.
HighestSupportedVersion
);
148
_protocolVersion = Math.Min(message.Version, ProtocolVersioning.
HighestSupportedVersion
);
DataCollectionTestCaseEventHandler.cs (2)
109
_communicationManager.SendMessage(MessageType.DataCollectionTestStartAck, string.Empty, Math.Min(message.Version, ProtocolVersioning.
HighestSupportedVersion
));
134
_communicationManager.SendMessage(MessageType.DataCollectionTestEndResult, attachmentSets, Math.Min(message.Version, ProtocolVersioning.
HighestSupportedVersion
));
DataCollectionTestCaseEventSender.cs (2)
24
private int _protocolVersion = ProtocolVersioning.
HighestSupportedVersion
;
102
_protocolVersion = Math.Min(message.Version, ProtocolVersioning.
HighestSupportedVersion
);
TestRequestSender.cs (1)
37
private readonly int _highestSupportedVersion = ProtocolVersioning.
HighestSupportedVersion
;
Microsoft.TestPlatform.CrossPlatEngine (1)
EventHandlers\TestRequestHandler.cs (1)
36
private readonly int _highestSupportedVersion = ProtocolVersioning.
HighestSupportedVersion
;
Microsoft.TestPlatform.VsTestConsole.TranslationLayer (1)
VsTestConsoleRequestSender.cs (1)
43
private int _protocolVersion = ProtocolVersioning.
HighestSupportedVersion
;