16 references to NodeShutdownReason
Microsoft.Build (16)
BackEnd\BuildManager\BuildManager.cs (3)
2552
if (shutdownPacket.Reason !=
NodeShutdownReason
.Requested)
2554
if (shutdownPacket.Reason ==
NodeShutdownReason
.ConnectionFailed)
2564
else if (shutdownPacket.Reason ==
NodeShutdownReason
.Error && _buildSubmissions.Values.Count == 0)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (5)
930
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
968
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
990
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1007
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1047
_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)
527
_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