CompleteMultipartUpload Method
Completes a multipart upload by assembling previously uploaded parts.
Syntax
[VB.NET] Public Sub CompleteMultipartUpload(ByVal ObjectName As String, ByVal UploadId As String)
[C#] public void CompleteMultipartUpload(string objectName, string uploadId);
Remarks
This method completes a multipart upload. The host will assemble all of the parts in the upload. Before calling this method, first call ListParts. This populates the Parts collection which is used when constructing the request to complete the upload.
NOTE: This method has a corresponding asynchronous version (CompleteMultipartUploadAsync) for use in the Xamarin environment.