34 references to combinedValues
System.DirectoryServices.AccountManagement (34)
System\DirectoryServices\AccountManagement\TrackedCollection.cs (14)
31if ((array.GetLength(0) - index) < this.combinedValues.Count) 35foreach (ValueEl el in this.combinedValues) 101return this.combinedValues.Count; 111return new TrackedCollectionEnumerator<T>("TrackedCollectionEnumerator", this, this.combinedValues); 120foreach (ValueEl el in this.combinedValues) 136foreach (ValueEl el in this.combinedValues) 146this.combinedValues.Clear(); 160this.combinedValues.Add(el); 172foreach (ValueEl el in this.combinedValues) 178this.combinedValues.Remove(el); 186this.combinedValues.Remove(el); 252foreach (ValueEl el in this.combinedValues) 276foreach (ValueEl el in this.combinedValues) 302foreach (ValueEl el in this.combinedValues)
System\DirectoryServices\AccountManagement\ValueCollection.cs (20)
204foreach (TrackedCollection<T>.ValueEl el in _inner.combinedValues) 231if ((index < 0) || (index > _inner.combinedValues.Count)) 233GlobalDebug.WriteLineIf(GlobalDebug.Warn, "PrincipalValueCollection", "Insert({0}): out of range (count={1})", index, _inner.combinedValues.Count); 241_inner.combinedValues.Insert(index, el); 256if ((index < 0) || (index >= _inner.combinedValues.Count)) 258GlobalDebug.WriteLineIf(GlobalDebug.Warn, "PrincipalValueCollection", "RemoveAt({0}): out of range (count={1})", index, _inner.combinedValues.Count); 262TrackedCollection<T>.ValueEl el = _inner.combinedValues[index]; 268_inner.combinedValues.RemoveAt(index); 274Pair<T, T> pair = _inner.combinedValues[index].originalValue; 275_inner.combinedValues.RemoveAt(index); 284if ((index < 0) || (index >= _inner.combinedValues.Count)) 286GlobalDebug.WriteLineIf(GlobalDebug.Warn, "PrincipalValueCollection", "this[{0}].get: out of range (count={1})", index, _inner.combinedValues.Count); 290TrackedCollection<T>.ValueEl el = _inner.combinedValues[index]; 308if ((index < 0) || (index >= _inner.combinedValues.Count)) 310GlobalDebug.WriteLineIf(GlobalDebug.Warn, "PrincipalValueCollection", "this[{0}].set: out of range (count={1})", index, _inner.combinedValues.Count); 317TrackedCollection<T>.ValueEl el = _inner.combinedValues[index]; 353return new ValueCollectionEnumerator<T>(_inner, _inner.combinedValues); 380_inner.combinedValues.Clear(); 394_inner.combinedValues.Add(el); 439foreach (TrackedCollection<T>.ValueEl el in _inner.combinedValues)