2 writes to _referencedEdge
PresentationFramework (2)
src\Framework\System\Windows\Documents\TextTreeTextNode.cs (2)
131node._referencedEdge = edge; 162_referencedEdge = edge;
8 references to _referencedEdge
PresentationFramework (8)
src\Framework\System\Windows\Documents\TextTreeTextNode.cs (8)
126if (_positionRefCount > 0 && edge != _referencedEdge) 178Invariant.Assert(edge == _referencedEdge, "Bad edge decrement!"); 237if (_positionRefCount > 0 && _referencedEdge == ElementEdge.BeforeStart) 429return _referencedEdge == ElementEdge.BeforeStart ? _positionRefCount > 0 : false; 473return _referencedEdge == ElementEdge.AfterEnd ? _positionRefCount > 0 : false; 505(previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart)) 527(nextNode._positionRefCount == 0 || (nextNode._referencedEdge == ElementEdge.AfterEnd))) 542else if ((previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart) &&