1 write to _children
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1498_children = GetChildrenCore();
30 references to _children
PresentationCore (30)
System\Windows\Automation\Peers\AutomationPeer.cs (30)
1454return _children; 1481if (_children != null && _children.Count > 0) 1483peer = _children[0]; 1499if (_children != null) 1501int count = _children.Count; 1504_children[i]._parent = this; 1505_children[i]._index = i; 1506_children[i]._hwnd = _hwnd; 1527if (_children != null && _children.Count > 0) 1529peer = _children[_children.Count - 1]; 1552if ( parent._children != null 1554&& _index + 1 < parent._children.Count 1555&& parent._children[_index] == this ) 1557sibling = parent._children[_index + 1]; 1575if ( parent._children != null 1577&& _index < parent._children.Count 1578&& parent._children[_index] == this ) 1580sibling = parent._children[_index - 1]; 1640Debug.Assert(caller._children != null, "iteration over a null family"); 1661iterationParent = (_parent._children == null || _parent._children.Count == caller._children.Count) 1900List<AutomationPeer> oldChildren = _children; 1925if(_children != null) 1927for(int count = _children.Count, i = 0; i < count; i++) 1929AutomationPeer child = _children[i]; 2240get { return _children; }