Example of Chunk Upload in Blazor File Upload Component
This example demonstrates the chunk upload functionalities of the File Upload component. Browse or drag-and-drop a large file to upload with pause, resume, and retry options.
Or drop files here
When the file size is large or transfer the file with slow network connection, the chunk upload feature slices the files and upload the sliced chunks to server in sequential order using the ChunkSize API.
The sample is configured with the following options:
- While uploading, you can pause the upload and resume it later.
- If the upload fails, retry option will be enabled.
- The example is configured with maximum file size as "100 MB" to upload.
See also