Click or drag to resize
IMultiPartUploadStream Interface
Interface extending Stream's functionality to enable upload of large files in smaller parts to external storage.

Namespace: CMS.IO
Assembly: CMS.IO (in CMS.IO.dll) Version: 10.0.0
Syntax
C#
public interface IMultiPartUploadStream

The IMultiPartUploadStream type exposes the following members.

Properties
  NameDescription
Public propertyMaximalPartSize
Returns maximal size in bytes of a part that can be sent to external storage.
Public propertyMinimalPartSize
Returns minimal size in bytes of a part that can be sent to external storage.
Top
Methods
  NameDescription
Public methodAbortMultiPartUpload
Aborts multipart upload to external storage and should remove all resources already uploaded to external storage if necessary.
Public methodCompleteMultiPartUploadProcess
Completes multipart upload process.
Public methodInitMultiPartUpload
Inits multipart upload with external storage.
Public methodUploadStreamContentAsMultiPart
Uploads stream content to external storage.
Top
See Also