5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcNode.cs (5)
436
_shutdownReason
= NodeEngineShutdownReason.Error;
567
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
847
_shutdownReason
= buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
854
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
868
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
7 references to _shutdownReason
Microsoft.Build (7)
BackEnd\Node\OutOfProcNode.cs (7)
445
CommunicationsUtilities.Trace("Shutting down with reason: {0}, and exception: {1}.",
_shutdownReason
, _shutdownException);
452
if (
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse)
465
if (
_shutdownReason
!= NodeEngineShutdownReason.BuildCompleteReuse)
472
_taskHostNodeManager.ShutdownConnectedNodes(
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse);
515
_nodeEndpoint.SendData(new NodeShutdown(
_shutdownReason
== NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception));
527
return
_shutdownReason
;
848
if (
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse)