2 instantiations of DictionaryItemDebugView
Microsoft.AspNetCore.Mvc.Abstractions (2)
ModelBinding\ModelStateDictionary.cs (1)
1264
public DictionaryItemDebugView<string, ModelStateEntry?>[] Items => _dictionary.Select(pair => new
DictionaryItemDebugView
<string, ModelStateEntry?>(pair)).ToArray();
src\Shared\Debugger\DictionaryDebugView.cs (1)
28
items[i] = new
DictionaryItemDebugView
<TKey, TValue>(keyValuePairs[i]);
3 references to DictionaryItemDebugView
Microsoft.AspNetCore.Mvc.Abstractions (3)
ModelBinding\ModelStateDictionary.cs (1)
1264
public
DictionaryItemDebugView
<string, ModelStateEntry?>[] Items => _dictionary.Select(pair => new DictionaryItemDebugView<string, ModelStateEntry?>(pair)).ToArray();
src\Shared\Debugger\DictionaryDebugView.cs (2)
19
public
DictionaryItemDebugView
<TKey, TValue>[] Items
25
var items = new
DictionaryItemDebugView
<TKey, TValue>[keyValuePairs.Length];