Click or drag to resize
FileStreamUploadStreamContentAsMultiPart Method
Uploads data inside a stream in multiple parts to Azure blob storage.

Namespace: CMS.AzureStorage
Assembly: CMS.AzureStorage (in CMS.AzureStorage.dll) Version: 10.0.0
Syntax
C#
public IEnumerable<string> UploadStreamContentAsMultiPart(
	string uploadSessionId,
	int nextPartNumber
)

Parameters

uploadSessionId
Type: SystemString
Unique identifier for one multipart upload. Can be obtained by InitMultiPartUpload method.
nextPartNumber
Type: SystemInt32
Number that defines position of the data obtained by the stream in the whole multipart upload process.

Return Value

Type: IEnumerableString
Unique identifiers of the uploaded parts.

Implements

IMultiPartUploadStreamUploadStreamContentAsMultiPart(String, Int32)
See Also