2 writes to _status
MSBuildTaskHost (2)
BackEnd\NodeEndpointOutOfProcTaskHost.cs (2)
96_status = LinkStatus.Inactive; 222_status = newStatus;
7 references to _status
MSBuildTaskHost (7)
BackEnd\NodeEndpointOutOfProcTaskHost.cs (7)
137public LinkStatus LinkStatus => _status; 145ErrorUtilities.VerifyThrow(_status == LinkStatus.Inactive, "Link not inactive. Status is {0}", _status); 196if (_status == LinkStatus.Active) 220ErrorUtilities.VerifyThrow(_status != newStatus, "Attempting to change status to existing status {0}.", _status); 221CommunicationsUtilities.Trace($"Changing link status from {_status} to {newStatus}");