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