2 writes to _referencedEdge
PresentationFramework (2)
System\Windows\Documents\TextTreeTextNode.cs (2)
124node._referencedEdge = edge; 155_referencedEdge = edge;
10 references to _referencedEdge
PresentationFramework (10)
System\Windows\Documents\TextTreeTextNode.cs (10)
119if (_positionRefCount > 0 && edge != _referencedEdge) 171Invariant.Assert(edge == _referencedEdge, "Bad edge decrement!"); 204Invariant.Assert(edge != _referencedEdge, "Splitting at referenced edge!"); 215Invariant.Assert(edge != _referencedEdge, "Splitting at referenced edge!"); 230if (_positionRefCount > 0 && _referencedEdge == ElementEdge.BeforeStart) 422return _referencedEdge == ElementEdge.BeforeStart ? _positionRefCount > 0 : false; 466return _referencedEdge == ElementEdge.AfterEnd ? _positionRefCount > 0 : false; 498(previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart)) 520(nextNode._positionRefCount == 0 || (nextNode._referencedEdge == ElementEdge.AfterEnd))) 535else if ((previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart) &&