4 instantiations of FormCollection
Microsoft.AspNetCore.Http (4)
Features\FormFeature.cs (3)
221
formFields = new
FormCollection
(await formReader.ReadFormAsync(cancellationToken));
307
formFields = new
FormCollection
(formAccumulator.GetResults(), files);
324
Form = new
FormCollection
(null, files);
FormCollection.cs (1)
21
public static readonly FormCollection Empty = new
FormCollection
();
10 references to FormCollection
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\HttpContextFormDataProvider.cs (1)
21
public IFormFileCollection FormFiles => _formFiles ?? (IFormFileCollection)
FormCollection
.Empty;
Microsoft.AspNetCore.Http (8)
Features\FormFeature.cs (3)
196
return
FormCollection
.Empty;
204
FormCollection
? formFields = null;
328
Form =
FormCollection
.Empty;
FormCollection.cs (5)
19
/// An empty <see cref="
FormCollection
"/>.
21
public 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)
25
if (typeof(
FormCollection
).IsAssignableFrom(modelType))