IUploadProvider Interface

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

Definition

Namespace: GleamTech.FileUltimate.AspNet.UI
Assembly: GleamTech.FileUltimate (in GleamTech.FileUltimate.dll) Version: 8.8.7
C#
public interface IUploadProvider

Methods

BeginItem Called when an item in the upload queue is beginning. Final validation of an item can be done here.
BeginItemChunk Called when a chunk of the item is beginning.
BeginQueue Called when the upload queue is beginning. Initial validation of items can be done here.
EndItem Called when an item in the upload queue is ending.
EndItemChunk Called when a chunk of the item is ending.
EndQueue Called when the upload queue is ending.

See Also