16 references to NodeShutdownReason
Microsoft.Build (16)
BackEnd\BuildManager\BuildManager.cs (3)
2741
if (shutdownPacket.Reason !=
NodeShutdownReason
.Requested)
2743
if (shutdownPacket.Reason ==
NodeShutdownReason
.ConnectionFailed)
2753
else if (shutdownPacket.Reason ==
NodeShutdownReason
.Error && _buildSubmissions.Values.Count == 0)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (5)
1035
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1068
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1291
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1351
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1368
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
BackEnd\Node\InProcNode.cs (2)
368
_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ?
NodeShutdownReason
.Error :
NodeShutdownReason
.Requested, exception));
BackEnd\Node\OutOfProcNode.cs (2)
534
_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ?
NodeShutdownReason
.Error :
NodeShutdownReason
.Requested, exception));
NodeShutdown.cs (4)
41
private
NodeShutdownReason
_reason;
51
public NodeShutdown(
NodeShutdownReason
reason)
59
public NodeShutdown(
NodeShutdownReason
reason, Exception e)
87
public
NodeShutdownReason
Reason