2 implementations of
Microsoft.AspNetCore.Http (1)
FormCollection.cs (1)
66public StringValues this[string key]
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\Binders\FormCollectionModelBinder.cs (1)
58public StringValues this[string key] => StringValues.Empty;
5 references to
Microsoft.AspNetCore.Antiforgery (1)
Internal\DefaultAntiforgeryTokenStore.cs (1)
73requestToken = form[_options.FormFieldName];
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\EndpointHtmlRenderer.cs (2)
271public StringValues this[string key] => _form[key]; 282result.Add(form[key]);
Microsoft.AspNetCore.HttpOverrides (1)
HttpMethodOverrideMiddleware.cs (1)
62var methodType = form[_options.FormFieldName!];
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\FormValueProvider.cs (1)
94var values = _values[key];