4 instantiations of Enumerator
Microsoft.AspNetCore.Mvc.Abstractions (4)
ModelBinding\ModelStateDictionary.cs (4)
750public Enumerator GetEnumerator() => new Enumerator(this, prefix: string.Empty); 992public Enumerator GetEnumerator() => new Enumerator(_dictionary, _prefix); 1147_prefixEnumerator = new Enumerator(dictionary, prefix); 1222_prefixEnumerator = new Enumerator(dictionary, prefix);
6 references to Enumerator
Microsoft.AspNetCore.Mvc.Abstractions (6)
ModelBinding\ModelStateDictionary.cs (6)
749/// <returns>An <see cref="Enumerator"/>.</returns> 750public Enumerator GetEnumerator() => new Enumerator(this, prefix: string.Empty); 992public Enumerator GetEnumerator() => new Enumerator(_dictionary, _prefix); 1012/// Intializes a new instance of <see cref="Enumerator"/>. 1138private Enumerator _prefixEnumerator; 1213private Enumerator _prefixEnumerator;