Info
| Version: | 3.1.1 | 
| Author(s): | Mark Alford | 
| Last Update: | Thursday, March 5, 2020 | 
| .NET Fiddle: | Online Example | 
| Project Url: | https://github.com/ma1f/uploadstream | 
| NuGet Url: | https://www.nuget.org/packages/UploadStream | 
Install
Install-Package UploadStream
                        dotnet add package UploadStream
                        paket add UploadStream
                        
                                UploadStream Download (Unzip the "nupkg" after downloading)
                            
                        Dependencies
Tags
 
                
By default dotnet model form model binding loads the entire stream into memory using `IFormFile` - this is non-ideal for large files
where processing of the stream should occur during streaming rather then buffering entire file(s) to memory/disk.
This package allows upload streams to be asynchronously processed via a delegate while maintaining generic model binding functionality with `ModelState` validation.