4 instantiations of FormCollection
Microsoft.AspNetCore.Http (4)
Features\FormFeature.cs (3)
221formFields = new FormCollection(await formReader.ReadFormAsync(cancellationToken)); 307formFields = new FormCollection(formAccumulator.GetResults(), files); 324Form = new FormCollection(null, files);
FormCollection.cs (1)
21public static readonly FormCollection Empty = new FormCollection();
10 references to FormCollection
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\HttpContextFormDataProvider.cs (1)
21public IFormFileCollection FormFiles => _formFiles ?? (IFormFileCollection)FormCollection.Empty;
Microsoft.AspNetCore.Http (8)
Features\FormFeature.cs (3)
196return FormCollection.Empty; 204FormCollection? formFields = null; 328Form = FormCollection.Empty;
FormCollection.cs (5)
19/// An empty <see cref="FormCollection"/>. 21public static readonly FormCollection Empty = new FormCollection(); 38/// Initializes a new instance of <see cref="FormCollection"/>. 173/// Enumerates a <see cref="FormCollection"/>. 188/// Advances the enumerator to the next element of the <see cref="FormCollection"/>.
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\Binders\FormCollectionModelBinderProvider.cs (1)
25if (typeof(FormCollection).IsAssignableFrom(modelType))