8 references to InsertionBehavior
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (8)
243bool modified = TryInsert(key, value, InsertionBehavior.OverwriteExisting); 250bool modified = TryInsert(key, value, InsertionBehavior.ThrowOnExisting); 505private bool TryInsert(TKey key, TValue value, InsertionBehavior behavior) 540if (behavior == InsertionBehavior.OverwriteExisting) 546if (behavior == InsertionBehavior.ThrowOnExisting) 572if (behavior == InsertionBehavior.OverwriteExisting) 578if (behavior == InsertionBehavior.ThrowOnExisting) 1455TryInsert(key, value, InsertionBehavior.None);