4 writes to _shutdownReason
Microsoft.Build (4)
BackEnd\Node\InProcNode.cs (4)
311
_shutdownReason
= NodeEngineShutdownReason.Error;
334
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
426
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
528
_shutdownReason
= buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
4 references to _shutdownReason
Microsoft.Build (4)
BackEnd\Node\InProcNode.cs (4)
332
if (
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse)
342
if (
_shutdownReason
!= NodeEngineShutdownReason.BuildCompleteReuse)
368
_nodeEndpoint.SendData(new NodeShutdown(
_shutdownReason
== NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception));
377
return
_shutdownReason
;