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)
137
public LinkStatus LinkStatus =>
_status
;
145
ErrorUtilities.VerifyThrow(
_status
== LinkStatus.Inactive, "Link not inactive. Status is {0}",
_status
);
196
if (
_status
== LinkStatus.Active)
220
ErrorUtilities.VerifyThrow(
_status
!= newStatus, "Attempting to change status to existing status {0}.",
_status
);
221
CommunicationsUtilities.Trace($"Changing link status from {
_status
} to {newStatus}");