| « PreviousNext » | |
![]() ![]() ![]() | Did this page help you? Yes | No | Tell us about it... |
The following tasks guide you through using the low-level .NET classes to list all in-progress multipart uploads on a bucket.
Low-Level API Multipart Uploads Listing Process
1 | Create an instance of the |
2 | Execute the |
The following C# code sample demonstrates the preceding tasks.
ListMultipartUploadsRequest allMultipartUploadsRequest = new ListMultipartUploadsRequest() .WithBucketName(existingBucketName); ListMultipartUploadsResponse mpUploadsResponse = s3Client.ListMultipartUploads(allMultipartUploadsRequest);