1 instantiation of PrefixEnumerable
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\ModelStateDictionary.cs (1)
811
return new
PrefixEnumerable
(this, prefix);
8 references to PrefixEnumerable
Microsoft.AspNetCore.Mvc.Abstractions (6)
ModelBinding\ModelStateDictionary.cs (6)
519
var
entries = FindKeysWithPrefix(key ?? string.Empty);
802
/// Gets a <see cref="
PrefixEnumerable
"/> that iterates over this instance of <see cref="ModelStateDictionary"/>
806
/// <returns>The <see cref="
PrefixEnumerable
"/>.</returns>
807
public
PrefixEnumerable
FindKeysWithPrefix(string prefix)
978
/// Initializes a new instance of <see cref="
PrefixEnumerable
"/>.
1001
/// An <see cref="IEnumerator{T}"/> for <see cref="
PrefixEnumerable
"/>.
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Validation\ValidationVisitor.cs (2)
345
var
entries = ModelState.FindKeysWithPrefix(key);
463
var
entries = ModelState.FindKeysWithPrefix(key);