4 instantiations of Enumerator
Microsoft.AspNetCore.Mvc.Abstractions (4)
ModelBinding\ModelStateDictionary.cs (4)
750
public Enumerator GetEnumerator() => new
Enumerator
(this, prefix: string.Empty);
992
public 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>
750
public
Enumerator
GetEnumerator() => new Enumerator(this, prefix: string.Empty);
992
public
Enumerator
GetEnumerator() => new Enumerator(_dictionary, _prefix);
1012
/// Intializes a new instance of <see cref="
Enumerator
"/>.
1138
private
Enumerator
_prefixEnumerator;
1213
private
Enumerator
_prefixEnumerator;