2 writes to _referencedEdge
PresentationFramework (2)
System\Windows\Documents\TextTreeTextNode.cs (2)
125node._referencedEdge = edge; 156_referencedEdge = edge;
10 references to _referencedEdge
PresentationFramework (10)
System\Windows\Documents\TextTreeTextNode.cs (10)
120if (_positionRefCount > 0 && edge != _referencedEdge) 172Invariant.Assert(edge == _referencedEdge, "Bad edge decrement!"); 205Invariant.Assert(edge != _referencedEdge, "Splitting at referenced edge!"); 216Invariant.Assert(edge != _referencedEdge, "Splitting at referenced edge!"); 231if (_positionRefCount > 0 && _referencedEdge == ElementEdge.BeforeStart) 423return _referencedEdge == ElementEdge.BeforeStart ? _positionRefCount > 0 : false; 467return _referencedEdge == ElementEdge.AfterEnd ? _positionRefCount > 0 : false; 499(previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart)) 521(nextNode._positionRefCount == 0 || (nextNode._referencedEdge == ElementEdge.AfterEnd))) 536else if ((previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart) &&