1 write to _children
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1486_children = GetChildrenCore();
30 references to _children
PresentationCore (30)
System\Windows\Automation\Peers\AutomationPeer.cs (30)
1442return _children; 1469if (_children != null && _children.Count > 0) 1471peer = _children[0]; 1487if (_children != null) 1489int count = _children.Count; 1492_children[i]._parent = this; 1493_children[i]._index = i; 1494_children[i]._hwnd = _hwnd; 1515if (_children != null && _children.Count > 0) 1517peer = _children[_children.Count - 1]; 1540if ( parent._children != null 1542&& _index + 1 < parent._children.Count 1543&& parent._children[_index] == this ) 1545sibling = parent._children[_index + 1]; 1563if ( parent._children != null 1565&& _index < parent._children.Count 1566&& parent._children[_index] == this ) 1568sibling = parent._children[_index - 1]; 1628Debug.Assert(caller._children != null, "iteration over a null family"); 1649iterationParent = (_parent._children == null || _parent._children.Count == caller._children.Count) 1888List<AutomationPeer> oldChildren = _children; 1913if(_children != null) 1915for(int count = _children.Count, i = 0; i < count; i++) 1917AutomationPeer child = _children[i]; 2224get { return _children; }