The parameters to request an abort of a multipart upload.

C# |
public class AbortMultipartUploadRequest : S3Request

All Members | Constructors | Methods | Properties | ||
Icon | Member | Description |
---|---|---|
![]() | AbortMultipartUploadRequest()()()() | Initializes a new instance of the AbortMultipartUploadRequest class |
![]() | AddHeader(String, String) |
Adds the header to the collection of headers for the request.
(Inherited from S3Request.) |
![]() | AddHeaders(NameValueCollection) |
Adds all of the specified key/value pairs into the request headers collection.
(Inherited from S3Request.) |
![]() | BucketName |
The name of the bucket containing the S3 object that was being uploaded in parts.
|
![]() | Equals(Object) | (Inherited from Object.) |
![]() | GetHashCode()()()() | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType()()()() | Gets the type of the current instance. (Inherited from Object.) |
![]() | InputStream |
Input stream for the request; content for the request will be read from the stream.
(Inherited from S3Request.) |
![]() | Key |
The key of the S3 object that was being uploaded.
|
![]() | ReadWriteTimeout |
Overrides the default HttpWebRequest ReadWriteTimeout value.
(Inherited from S3Request.) |
![]() | Timeout |
Overrides the default HttpWebRequest timeout value.
(Inherited from S3Request.) |
![]() | ToString()()()() | (Inherited from S3Request.) |
![]() | UploadId |
The upload id for the in-progress multipart upload that should be aborted.
|
![]() | WithBucketName(String) | Obsolete.
Sets the name of the bucket containing the S3 object that was being uploaded in parts.
|
![]() | WithInputStream(Stream) | Obsolete.
Sets an input stream for the request; content for the request will be read from the stream.
(Inherited from S3Request.) |
![]() | WithKey(String) | Obsolete.
Sets the key of the S3 object that was being uploaded.
|
![]() | WithReadWriteTimeout(Int32) | Obsolete.
Overrides the default HttpWebRequest ReadWriteTimeout value.
(Inherited from S3Request.) |
![]() | WithTimeout(Int32) | Obsolete.
Overrides the default HttpWebRequest timeout value.
(Inherited from S3Request.) |
![]() | WithUploadId(String) | Obsolete.
Sets the upload id for the in-progress multipart upload that should be aborted.
|

After a multipart upload is aborted, no additional parts can be uploaded using that upload ID.
The storage consumed by any previously uploaded parts will be freed. However, if any part uploads
are currently in progress, those part uploads might or might not succeed. As a result, it might be
necessary to abort a given multipart upload multiple times in order to completely free all storage
consumed by all parts.