Click or drag to resize
FileStream.CompleteMultiPartUploadProcess Method
Uploads one large file to Amazon S3 storage in smaller parts.

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

Parameters

uploadSessionId
Type: System.String
Unique identifier for one multipart upload. Can be obtained by InitMultiPartUpload() method.
partIdentifiers
Type: System.Collections.Generic.IEnumerable<String>
List of identifiers from Amazon S3 received after uploading each part by UploadStreamContentAsMultiPart(String, Int32) method.

Return Value

Type: String
ETag of the uploaded file.

Implements

IMultiPartUploadStream.CompleteMultiPartUploadProcess(String, IEnumerable<String>)
Remarks
Stream still needs to be disposed.
See Also