2 instantiations of ClientHandshakeMessage
Microsoft.Build (1)
BackEnd\BuildManager\CoordinatorClient.Connection.cs (1)
66WriteClientMessage(new ClientHandshakeMessage(Id, processId, capabilities: [Capabilities.NestedGrants]));
Microsoft.Build.Framework (1)
Coordinator\Messages\ClientHandshakeMessage.cs (1)
66return new(connectionId, processId, ImmutableCollectionsMarshal.AsImmutableArray(capabilities));
4 references to ClientHandshakeMessage
Microsoft.Build.Framework (3)
Coordinator\Messages\ClientHandshakeMessage.cs (1)
53internal static ClientHandshakeMessage ReadPayload(BinaryReader reader)
Coordinator\Messages\ClientMessage.Factory.cs (1)
14new(ClientMessageType.Handshake, static (reader, _) => 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.Connection.cs (1)
70if (clientMessage is not ClientHandshakeMessage handshake)