1 write to _forward
System.Net.Http (1)
src\libraries\Common\src\System\Collections\Generic\BidirectionalDictionary.cs (1)
18
_forward
= new Dictionary<T1, T2>(capacity);
5 references to _forward
System.Net.Http (5)
src\libraries\Common\src\System\Collections\Generic\BidirectionalDictionary.cs (5)
26
Debug.Assert(
_forward
.Count == _backward.Count, "both the dictionaries must have the same number of elements");
27
return
_forward
.Count;
34
_forward
.Add(item1, item2);
40
return
_forward
.TryGetValue(item1, out item2);
50
return
_forward
.GetEnumerator();