1 write to _nodeEndpoint
MSBuildTaskHost (1)
OutOfProcTaskHostNode.cs (1)
357
_nodeEndpoint
= new NodeEndpointOutOfProcTaskHost(parentPacketVersion);
14 references to _nodeEndpoint
MSBuildTaskHost (14)
OutOfProcTaskHostNode.cs (14)
358
_nodeEndpoint
.OnLinkStatusChanged += new LinkStatusChangedDelegate(OnLinkStatusChanged);
359
_nodeEndpoint
.Listen(this);
454
ErrorUtilities.VerifyThrow(
_nodeEndpoint
!= null, $"{nameof(
_nodeEndpoint
)} is null.");
456
if (
_nodeEndpoint
.LinkStatus == LinkStatus.Active)
467
_nodeEndpoint
.SendData(taskCompletePacketToSend);
522
ErrorUtilities.VerifyThrow(
_nodeEndpoint
!= null, $"{nameof(
_nodeEndpoint
)} is null.");
547
if (
_nodeEndpoint
.LinkStatus == LinkStatus.Active)
550
_nodeEndpoint
.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested));
553
_nodeEndpoint
.OnLinkStatusChanged -= new LinkStatusChangedDelegate(OnLinkStatusChanged);
556
_nodeEndpoint
.Disconnect();
848
if (
_nodeEndpoint
?.LinkStatus == LinkStatus.Active)
863
_nodeEndpoint
.SendData(logMessage);