FileStream.UploadStreamContentAsMultiPart Method |
Uploads data inside a stream in multiple parts to Azure blob storage.
Namespace: CMS.AzureStorageAssembly: CMS.AzureStorage (in CMS.AzureStorage.dll) Version: 13.0.131
Syntax public IEnumerable<string> UploadStreamContentAsMultiPart(
string uploadSessionId,
int nextPartNumber
)
Parameters
- uploadSessionId
- Type: System.String
Unique identifier for one multipart upload. Can be obtained by InitMultiPartUpload() method. - nextPartNumber
- Type: System.Int32
Number that defines position of the data obtained by the stream in the whole multipart upload process.
Return Value
Type:
IEnumerable<String>Unique identifiers of the uploaded parts.
Implements
IMultiPartUploadStream.UploadStreamContentAsMultiPart(String, Int32)See Also