6 instantiations of AdaptiveCapacityDictionary
Microsoft.AspNetCore.Http (6)
25 references to AdaptiveCapacityDictionary
Microsoft.AspNetCore.Http (25)
src\Shared\Dictionary\AdaptiveCapacityDictionary.cs (12)
31/// Creates an empty <see cref="AdaptiveCapacityDictionary{TKey, TValue}"/>.
39/// Creates a <see cref="AdaptiveCapacityDictionary{TKey, TValue}"/>.
48/// Creates a <see cref="AdaptiveCapacityDictionary{TKey, TValue}"/>.
57/// Creates a <see cref="AdaptiveCapacityDictionary{TKey, TValue}"/>.
87/// Creates a <see cref="AdaptiveCapacityDictionary{TKey, TValue}"/> initialized with the specified <paramref name="dict"/>.
236throw new ArgumentException($"An element with the key '{key}' already exists in the {nameof(AdaptiveCapacityDictionary<TKey, TValue>)}.", nameof(key));
404/// Attempts to remove and return the value that has the specified key from the <see cref="AdaptiveCapacityDictionary{TKey, TValue}"/>.
407/// <param name="value">When this method returns, contains the object removed from the <see cref="AdaptiveCapacityDictionary{TKey, TValue}"/>, or <c>null</c> if key does not exist.</param>
601private readonly AdaptiveCapacityDictionary<TKey, TValue> _dictionary;
609/// <param name="dictionary">A <see cref="AdaptiveCapacityDictionary{TKey, TValue}"/>.</param>
610public Enumerator(AdaptiveCapacityDictionary<TKey, TValue> dictionary)
646var dictionary = _dictionary;