1 implementation of ReadFormAsync
Microsoft.AspNetCore.Http (1)
Features\FormFeature.cs (1)
159public Task<IFormCollection> ReadFormAsync(CancellationToken cancellationToken)
3 references to ReadFormAsync
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
163return FormFeature.ReadFormAsync(cancellationToken);
Microsoft.AspNetCore.Http.Features (2)
IFormFeature.cs (2)
20/// request body was read using <see cref="ReadFormAsync(CancellationToken)"/> or <see cref="ReadForm"/>, or 31/// Consider using <see cref="ReadFormAsync(CancellationToken)"/> instead.