3 instantiations of FormFeature
Microsoft.AspNetCore.Http (2)
Internal\DefaultHttpRequest.cs (1)
18private static readonly Func<DefaultHttpRequest, IFormFeature> _newFormFeature = r => new FormFeature(r, r._context.FormOptions ?? FormOptions.Default, r._context.GetEndpoint());
RequestFormReaderExtensions.cs (1)
37features.Set<IFormFeature>(new FormFeature(request, options));
Microsoft.AspNetCore.Mvc.Core (1)
Filters\RequestFormLimitsFilter.cs (1)
40features.Set<IFormFeature>(new FormFeature(context.HttpContext.Request, FormOptions));
3 references to FormFeature
Microsoft.AspNetCore.Http (3)
Features\FormFeature.cs (3)
27/// Initializes a new instance of <see cref="FormFeature"/>. 40/// Initializes a new instance of <see cref="FormFeature"/>. 49/// Initializes a new instance of <see cref="FormFeature"/>.