1 instantiation of PrefixEnumerable
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\ModelStateDictionary.cs (1)
811return new PrefixEnumerable(this, prefix);
8 references to PrefixEnumerable
Microsoft.AspNetCore.Mvc.Abstractions (6)
ModelBinding\ModelStateDictionary.cs (6)
519var 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> 807public 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)
345var entries = ModelState.FindKeysWithPrefix(key); 463var entries = ModelState.FindKeysWithPrefix(key);