8 references to IDictionaryCalls
Microsoft.CodeAnalysis.BannedApiAnalyzers (8)
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2+Builder.cs (8)
55
bool IDictionary.IsReadOnly =>
IDictionaryCalls
.IsReadOnly(ref _builder);
57
bool IDictionary.IsFixedSize =>
IDictionaryCalls
.IsFixedSize(ref _builder);
71
get =>
IDictionaryCalls
.GetItem(ref _builder, key);
72
set =>
IDictionaryCalls
.SetItem(ref _builder, key, value);
135
=>
IDictionaryCalls
.Contains(ref _builder, key);
138
=>
IDictionaryCalls
.Add(ref _builder, key, value);
141
=>
IDictionaryCalls
.GetEnumerator(ref _builder);
144
=>
IDictionaryCalls
.Remove(ref _builder, key);