Click or drag to resize
IMultiPartUploadStreamCompleteMultiPartUploadProcess Method
Completes multipart upload process.

Namespace: CMS.IO
Assembly: CMS.IO (in CMS.IO.dll) Version: 11.0.0
Syntax
C#
string CompleteMultiPartUploadProcess(
	string uploadSessionId,
	IEnumerable<string> partIdentifiers
)

Parameters

uploadSessionId
Type: SystemString
Unique identifier for multipart upload process to external storage. Is obtained by InitMultiPartUpload.
partIdentifiers
Type: System.Collections.GenericIEnumerableString
All unique identifiers of uploaded parts acquired by UploadStreamContentAsMultiPart(String, Int32) method.

Return Value

Type: String
ETag of the uploaded file.
Remarks
Stream still needs to be disposed.
See Also