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

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

Parameters

uploadSessionId
Type: SystemString
Unique identifier for one multipart upload. Can be obtained by InitMultiPartUpload method.
partIdentifiers
Type: System.Collections.GenericIEnumerableString
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

IMultiPartUploadStreamCompleteMultiPartUploadProcess(String, IEnumerableString)
Remarks
Stream still needs to be disposed.
See Also