2 writes to _status
MSBuild (2)
src\msbuild\src\Shared\NodeEndpointOutOfProcBase.cs (2)
244_status = LinkStatus.Inactive; 315_status = newStatus;
8 references to _status
MSBuild (8)
src\msbuild\src\Shared\NodeEndpointOutOfProcBase.cs (8)
173get { return _status; } 190Assumed.Equal(_status, LinkStatus.Inactive, $"Link not inactive. Status is {_status}"); 221if (_status == LinkStatus.Active) 313Assumed.NotEqual(_status, newStatus, $"Attempting to change status to existing status {_status}."); 314CommunicationsUtilities.Trace($"Changing link status from {_status} to {newStatus}"); 316RaiseLinkStatusChanged(_status);