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