16 references to NodeShutdownReason
Microsoft.Build (16)
BackEnd\BuildManager\BuildManager.cs (3)
2470
if (shutdownPacket.Reason !=
NodeShutdownReason
.Requested)
2472
if (shutdownPacket.Reason ==
NodeShutdownReason
.ConnectionFailed)
2482
else if (shutdownPacket.Reason ==
NodeShutdownReason
.Error && _buildSubmissions.Values.Count == 0)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (5)
910
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
948
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
970
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
992
_packetFactory.RoutePacket(_nodeId, new NodeShutdown(
NodeShutdownReason
.ConnectionFailed));
1034
_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