2 writes to originalValue
System.DirectoryServices.AccountManagement (2)
System\DirectoryServices\AccountManagement\ValueCollection.cs (2)
392
el.
originalValue
= new Pair<T, T>(value, value);
451
el.
originalValue
= new Pair<T, T>(el.insertedValue, el.insertedValue);
17 references to originalValue
System.DirectoryServices.AccountManagement (17)
System\DirectoryServices\AccountManagement\TrackedCollection.cs (10)
140
this.removedValues.Add(el.
originalValue
.Left);
182
if (!el.isInserted && el.
originalValue
.Right.Equals(value))
187
this.removedValues.Add(el.
originalValue
.Left);
213
return this.
originalValue
.Right; // Right == current value
280
if (!el.
originalValue
.Left.Equals(el.
originalValue
.Right))
284
changedList.Add(new Pair<T, T>(el.
originalValue
.Left, el.
originalValue
.Right));
309
if (!el.
originalValue
.Left.Equals(el.
originalValue
.Right))
System\DirectoryServices\AccountManagement\TrackedCollectionEnumerator.cs (1)
87
_current = el.
originalValue
.Right;
System\DirectoryServices\AccountManagement\ValueCollection.cs (6)
212
if (!el.isInserted && el.
originalValue
.Right.Equals(value))
274
Pair<T, T> pair = _inner.combinedValues[index].
originalValue
;
299
GlobalDebug.WriteLineIf(GlobalDebug.Info, "PrincipalValueCollection", "this[{0}].get: is original {1}", index, el.
originalValue
.Right);
300
return el.
originalValue
.Right; // Right == current value
327
el.
originalValue
.Right = value;
456
Pair<T, T> pair = el.
originalValue
;