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>();
5 references to Keys
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\EndpointHtmlRenderer.cs (3)
234public IEnumerable<string> Keys => _form.Keys; 240var result = new List<StringValues>(form.Keys.Count); 241foreach (var key in form.Keys)
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\FormValueProvider.cs (1)
59_prefixContainer = new PrefixContainer(_values.Keys);
Microsoft.AspNetCore.Mvc.IntegrationTests (1)
FormCollectionModelBindingIntegrationTest.cs (1)
153Assert.Empty(collection.Keys);