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)
155
get { return
_status
; }
172
ErrorUtilities.VerifyThrow(
_status
== LinkStatus.Inactive, $"Link not inactive. Status is {
_status
}");
203
if (
_status
== LinkStatus.Active)
292
ErrorUtilities.VerifyThrow(
_status
!= newStatus, $"Attempting to change status to existing status {
_status
}.");
293
CommunicationsUtilities.Trace($"Changing link status from {
_status
} to {newStatus}");
295
RaiseLinkStatusChanged(
_status
);