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;
6 references to
Microsoft.AspNetCore.Antiforgery (1)
Internal\DefaultAntiforgeryTokenStore.cs (1)
73requestToken = form[_options.FormFieldName];
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\EndpointHtmlRenderer.cs (2)
274public StringValues this[string key] => _form[key]; 285result.Add(form[key]);
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (1)
MigrationsEndPointMiddleware.cs (1)
98var contextTypeName = form["context"].ToString();
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];