Click or drag to resize
FileStreamCompleteMultiPartUploadProcess Method
Completes multiple part upload process. Sends final request to Azure blob storage to merge all parts already sent.

Namespace: CMS.AzureStorage
Assembly: CMS.AzureStorage (in CMS.AzureStorage.dll) Version: 10.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
Identifiers of the parts already sent to Azure blob storage, obtained by calling UploadStreamContentAsMultiPart(String, Int32)

Return Value

Type: String
ETag of the uploaded file.

Implements

IMultiPartUploadStreamCompleteMultiPartUploadProcess(String, IEnumerableString)
See Also