4 writes to _shutdownReason
Microsoft.Build (4)
BackEnd\Node\InProcNode.cs (4)
306
_shutdownReason
= NodeEngineShutdownReason.Error;
329
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
421
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
519
_shutdownReason
= buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
4 references to _shutdownReason
Microsoft.Build (4)
BackEnd\Node\InProcNode.cs (4)
327
if (
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse)
337
if (
_shutdownReason
!= NodeEngineShutdownReason.BuildCompleteReuse)
363
_nodeEndpoint.SendData(new NodeShutdown(
_shutdownReason
== NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception));
372
return
_shutdownReason
;