Table of Contents

IUploadProvider Interface

Definition

Namespace
GleamTech.FileUltimate.AspNet.UI
Assembly
GleamTech.FileUltimate.dll

Represents an object for handling of uploads in FileUploader. Implement this interface to provide a custom way of handling uploads.

public interface IUploadProvider

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.