16 references to NodeShutdownReason
Microsoft.Build (16)
BackEnd\BuildManager\BuildManager.cs (3)
2512
if (shutdownPacket.Reason !=
NodeShutdownReason
.Requested)
2514
if (shutdownPacket.Reason ==
NodeShutdownReason
.ConnectionFailed)
2524
else if (shutdownPacket.Reason ==
NodeShutdownReason
.Error && _buildSubmissions.Values.Count == 0)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (5)
661
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
683
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
911
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
971
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
993
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
BackEnd\Node\InProcNode.cs (2)
353
_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ?
NodeShutdownReason
.Error :
NodeShutdownReason
.Requested, exception));
BackEnd\Node\OutOfProcNode.cs (2)
515
_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