2 implementations of Keys
Microsoft.AspNetCore.Http (1)
FormCollection.cs (1)
93
public ICollection<string>
Keys
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\Binders\FormCollectionModelBinder.cs (1)
64
public ICollection<string>
Keys
=> new List<string>();
5 references to Keys
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\EndpointHtmlRenderer.cs (3)
234
public IEnumerable<string> Keys => _form.
Keys
;
240
var result = new List<StringValues>(form.
Keys
.Count);
241
foreach (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)
153
Assert.Empty(collection.
Keys
);