16 references to NodeShutdownReason
Microsoft.Build (16)
BackEnd\BuildManager\BuildManager.cs (3)
2826
if (shutdownPacket.Reason !=
NodeShutdownReason
.Requested)
2828
if (shutdownPacket.Reason ==
NodeShutdownReason
.ConnectionFailed)
2838
else if (shutdownPacket.Reason ==
NodeShutdownReason
.Error && _buildSubmissions.Values.Count == 0)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (5)
1117
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1150
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1440
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1500
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1519
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
BackEnd\Node\InProcNode.cs (2)
363
_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ?
NodeShutdownReason
.Error :
NodeShutdownReason
.Requested, exception));
BackEnd\Node\OutOfProcNode.cs (2)
535
_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ?
NodeShutdownReason
.Error :
NodeShutdownReason
.Requested, exception));
src\msbuild\src\Shared\NodeShutdown.cs (4)
41
private
NodeShutdownReason
_reason;
51
public NodeShutdown(
NodeShutdownReason
reason)
59
public NodeShutdown(
NodeShutdownReason
reason, Exception e)
87
public
NodeShutdownReason
Reason