3 instantiations of DictionaryItemDebugView
Microsoft.AspNetCore.Http (3)
Internal\RequestCookieCollection.cs (1)
235public DictionaryItemDebugView<string, string>[] Items => _collection.Select(pair => new DictionaryItemDebugView<string, string>(pair)).ToArray();
src\Shared\Debugger\DictionaryDebugView.cs (1)
28items[i] = new DictionaryItemDebugView<TKey, TValue>(keyValuePairs[i]);
src\Shared\Debugger\StringValuesDictionaryDebugView.cs (1)
28keyValuePairs.Add(new DictionaryItemDebugView<string, string>(kvp.Key, kvp.Value.ToString()));
5 references to DictionaryItemDebugView
Microsoft.AspNetCore.Http (5)
Internal\RequestCookieCollection.cs (1)
235public DictionaryItemDebugView<string, string>[] Items => _collection.Select(pair => new DictionaryItemDebugView<string, string>(pair)).ToArray();
src\Shared\Debugger\DictionaryDebugView.cs (2)
19public DictionaryItemDebugView<TKey, TValue>[] Items 25var items = new DictionaryItemDebugView<TKey, TValue>[keyValuePairs.Length];
src\Shared\Debugger\StringValuesDictionaryDebugView.cs (2)
21public DictionaryItemDebugView<string, string>[] Items 25var keyValuePairs = new List<DictionaryItemDebugView<string, string>>();