NeatUpload Documentation

UploadStatus Enumeration

The status of an upload.

public enum UploadStatus

Members

Member Name Description
Unknown Either the upload is unknown (e.g. an invalid post-back ID) or hasn't started to be received yet.
NormalInProgress The upload is still being received and the request had a Content-Length header.
ChunkedInProgress The upload is still being received and the request did not have a Content-Length header and has a Transfer-Encoding of "chunked".
ProcessingInProgress The entire upload has been received but the request is still being processed (e.g. the upload page code-behind is still executing).
ProcessingCompleted SetProcessingState was called for this upload and the request has completed.
Completed SetProcessingState was not called for this upload and the request has completed.
Rejected An UploadException (or subclass) was thrown while receiving or processing the upload.
Failed An exception that is not an UploadException was thrown while receiving or processing the upload.
Cancelled The upload was cancelled by calling CancelPostBack

Requirements

Namespace: Brettle.Web.NeatUpload

Assembly: Brettle.Web.NeatUpload (in Brettle.Web.NeatUpload.dll)

See Also

Brettle.Web.NeatUpload Namespace