DefaultUploadProvider Class
Definition
- Namespace
- GleamTech.FileUltimate.AspNet.UI
- Assembly
- GleamTech.FileUltimate.dll
The default provider for handling of uploads in FileUploader.
public class DefaultUploadProvider : IUploadProvider
- Inheritance
-
DefaultUploadProvider
- Implements
Constructors
| DefaultUploadProvider() |
Methods
| BeginItem(UploadItem) |
Called when an item in the upload queue is beginning. Final validation of an item can be done here. |
| BeginItemChunk(UploadItemChunk) |
Called when a chunk of the item is beginning. |
| BeginQueue(UploadQueue, IEnumerable<UploadItem>) |
Called when the upload queue is beginning. Initial validation of items can be done here. |
| EndItem(UploadItem, Exception) |
Called when an item in the upload queue is ending. |
| EndItemChunk(UploadItemChunk) |
Called when a chunk of the item is ending. |
| EndQueue(UploadQueue, IEnumerable<UploadItem>, Exception) |
Called when the upload queue is ending. |
| GetChunkFileName(UploadItem, int) |
Called when file name for a chunk is required. |
| GetFileSystem(UploadQueue) |
Called when a file system is required. |
| OnItemError(UploadItem, Exception, FileSystem) |
Called when an item fails. |