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