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); 506private bool TryInsert(TKey key, TValue value, InsertionBehavior behavior) 541if (behavior == InsertionBehavior.OverwriteExisting) 547if (behavior == InsertionBehavior.ThrowOnExisting) 573if (behavior == InsertionBehavior.OverwriteExisting) 579if (behavior == InsertionBehavior.ThrowOnExisting) 1456TryInsert(key, value, InsertionBehavior.None);