2 writes to _head
PresentationCore (2)
System\Windows\LayoutManager.cs (2)
866
_head
= r;
977
if(entry.Prev == null)
_head
= entry.Next;
6 references to _head
PresentationCore (6)
System\Windows\LayoutManager.cs (6)
864
r.Next =
_head
;
865
if(
_head
!= null)
_head
.Prev = r;
935
Request r =
_head
;
953
internal bool IsEmpty { get { return (
_head
== null); }}
960
for(Request r =
_head
; r != null; r = r.Next)