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!"); 233if (_positionRefCount > 0 && _referencedEdge == ElementEdge.BeforeStart) 425return _referencedEdge == ElementEdge.BeforeStart ? _positionRefCount > 0 : false; 469return _referencedEdge == ElementEdge.AfterEnd ? _positionRefCount > 0 : false; 501(previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart)) 523(nextNode._positionRefCount == 0 || (nextNode._referencedEdge == ElementEdge.AfterEnd))) 538else if ((previousNode._positionRefCount == 0 || previousNode._referencedEdge == ElementEdge.BeforeStart) &&