2 instantiations of ClientHandshakeMessage
Microsoft.Build (1)
BackEnd\BuildManager\CoordinatorClient.cs (1)
457
writer.Write(new
ClientHandshakeMessage
(connectionId, processId, []));
Microsoft.Build.Framework (1)
Coordinator\Messages\ClientHandshakeMessage.cs (1)
67
return
new
(connectionId, processId, ImmutableCollectionsMarshal.AsImmutableArray(capabilities));
4 references to ClientHandshakeMessage
Microsoft.Build.Framework (3)
Coordinator\Messages\ClientHandshakeMessage.cs (1)
54
public static
ClientHandshakeMessage
ReadPayload(BinaryReader reader)
Coordinator\Messages\ClientMessage.cs (1)
21
ClientMessageType.Handshake =>
ClientHandshakeMessage
.ReadPayload(reader),
Coordinator\Messages\ServerHandshakeMessage.cs (1)
11
/// Handshake response sent by the server after receiving a <see cref="
ClientHandshakeMessage
"/>.
MSBuild.Coordinator (1)
CoordinatorServer.cs (1)
162
if (firstMessage is not
ClientHandshakeMessage
handshake)