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