1 write to _children
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1485_children = GetChildrenCore();
30 references to _children
PresentationCore (30)
System\Windows\Automation\Peers\AutomationPeer.cs (30)
1441return _children; 1468if (_children != null && _children.Count > 0) 1470peer = _children[0]; 1486if (_children != null) 1488int count = _children.Count; 1491_children[i]._parent = this; 1492_children[i]._index = i; 1493_children[i]._hwnd = _hwnd; 1514if (_children != null && _children.Count > 0) 1516peer = _children[_children.Count - 1]; 1539if ( parent._children != null 1541&& _index + 1 < parent._children.Count 1542&& parent._children[_index] == this ) 1544sibling = parent._children[_index + 1]; 1562if ( parent._children != null 1564&& _index < parent._children.Count 1565&& parent._children[_index] == this ) 1567sibling = parent._children[_index - 1]; 1627Debug.Assert(caller._children != null, "iteration over a null family"); 1648iterationParent = (_parent._children == null || _parent._children.Count == caller._children.Count) 1887List<AutomationPeer> oldChildren = _children; 1912if(_children != null) 1914for(int count = _children.Count, i = 0; i < count; i++) 1916AutomationPeer child = _children[i]; 2227get { return _children; }