1 write to _children
PresentationCore (1)
Core\CSharp\System\Windows\Automation\Peers\AutomationPeer.cs (1)
1402_children = GetChildrenCore();
30 references to _children
PresentationCore (30)
Core\CSharp\System\Windows\Automation\Peers\AutomationPeer.cs (30)
1353return _children; 1380if (_children != null && _children.Count > 0) 1382peer = _children[0]; 1403if (_children != null) 1405int count = _children.Count; 1408_children[i]._parent = this; 1409_children[i]._index = i; 1410_children[i]._hwnd = _hwnd; 1431if (_children != null && _children.Count > 0) 1433peer = _children[_children.Count - 1]; 1457if ( parent._children != null 1459&& _index + 1 < parent._children.Count 1460&& parent._children[_index] == this ) 1462sibling = parent._children[_index + 1]; 1480if ( parent._children != null 1482&& _index < parent._children.Count 1483&& parent._children[_index] == this ) 1485sibling = parent._children[_index - 1]; 1546Debug.Assert(caller._children != null, "iteration over a null family"); 1567iterationParent = (_parent._children == null || _parent._children.Count == caller._children.Count) 1807List<AutomationPeer> oldChildren = _children; 1833if(_children != null) 1835for(int count = _children.Count, i = 0; i < count; i++) 1837AutomationPeer child = _children[i]; 2152get { return _children; }