2 instantiations of ClientHandshakeMessage
Microsoft.Build (1)
BackEnd\BuildManager\CoordinatorClient.cs (1)
457writer.Write(new ClientHandshakeMessage(connectionId, processId, []));
Microsoft.Build.Framework (1)
Coordinator\Messages\ClientHandshakeMessage.cs (1)
67return new(connectionId, processId, ImmutableCollectionsMarshal.AsImmutableArray(capabilities));
4 references to ClientHandshakeMessage
Microsoft.Build.Framework (3)
Coordinator\Messages\ClientHandshakeMessage.cs (1)
54public static ClientHandshakeMessage ReadPayload(BinaryReader reader)
Coordinator\Messages\ClientMessage.cs (1)
21ClientMessageType.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)
162if (firstMessage is not ClientHandshakeMessage handshake)