1 instantiation of DictionaryItemDebugView
Microsoft.AspNetCore.Http.Abstractions (1)
src\Shared\Debugger\DictionaryDebugView.cs (1)
28items[i] = new DictionaryItemDebugView<TKey, TValue>(keyValuePairs[i]);
3 references to DictionaryItemDebugView
Microsoft.AspNetCore.Http.Abstractions (3)
HttpContext.cs (1)
111public DictionaryItemDebugView<Type, object>[] Items => _features.Select(pair => new DictionaryItemDebugView<Type, object>(pair)).ToArray();
src\Shared\Debugger\DictionaryDebugView.cs (2)
19public DictionaryItemDebugView<TKey, TValue>[] Items 25var items = new DictionaryItemDebugView<TKey, TValue>[keyValuePairs.Length];