2 implementations of Keys
Microsoft.AspNetCore.Http (1)
FormCollection.cs (1)
93public ICollection<string> Keys
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\Binders\FormCollectionModelBinder.cs (1)
64public ICollection<string> Keys => new List<string>();
4 references to Keys
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\EndpointHtmlRenderer.cs (3)
273public IEnumerable<string> Keys => _form.Keys; 279var result = new List<StringValues>(form.Keys.Count); 280foreach (var key in form.Keys)
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\FormValueProvider.cs (1)
59_prefixContainer = new PrefixContainer(_values.Keys);