Microsoft.AspNetCore.Http.FormFile
(link) is the default implementation of IFormFile which represents a file sent with the HttpRequest. This class contains a Stream
, as such it should implement IDisposable.
How come it does not? Is there a design reason behind this?