2 writes to _status
MSBuild (2)
NodeEndpointOutOfProcBase.cs (2)
226_status = LinkStatus.Inactive; 294_status = newStatus;
8 references to _status
MSBuild (8)
NodeEndpointOutOfProcBase.cs (8)
155get { return _status; } 172ErrorUtilities.VerifyThrow(_status == LinkStatus.Inactive, $"Link not inactive. Status is {_status}"); 203if (_status == LinkStatus.Active) 292ErrorUtilities.VerifyThrow(_status != newStatus, $"Attempting to change status to existing status {_status}."); 293CommunicationsUtilities.Trace($"Changing link status from {_status} to {newStatus}"); 295RaiseLinkStatusChanged(_status);