The ListPartsResponse contains all the information about the ListParts method.

Namespace: Amazon.S3.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class ListPartsResponse : S3Response
Public Class ListPartsResponse _
	Inherits S3Response
public ref class ListPartsResponse : public S3Response

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
ListPartsResponse()()()()
Initializes a new instance of the ListPartsResponse class
AmazonId2
Gets and sets the AmzId2 property.
(Inherited from S3Response.)
BucketName
Gets and sets the name of the bucket to which the multipart upload was initiated.
Dispose()()()()
Disposes of all managed and unmanaged resources.
(Inherited from S3Response.)
Equals(Object)
Determines whether the specified Object is equal to the current 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.)
Headers
Gets and sets the Headers property. Information like the request-id, the amz-id-2 are retrieved fro the Headers and presented to the user via properties of the response object.
(Inherited from S3Response.)
Initiator
Gets and sets the Initiator property.
IsTruncated
Gets and sets the IsTruncated property.

Indicates whether the returned list of parts is truncated. A value true indicates the list was truncated. A list may be truncated if the number of parts exceeds the limit specified by MaxParts.

Key
Gets and sets the object key for which the multipart upload was initiated.
MaxParts
Gets and sets the maximum number of parts allowed in a response.
Metadata
Gets and sets the Metadata property.
(Inherited from S3Response.)
NextPartNumberMarker
Gets and sets the NextPartNumberMarker property.

When a list is truncated, specifies the last part that should be skipped over to resume listing. Use this value for the PartNumberMarker request property in a subsequent request.

Owner
Gets and sets the Owner property.
PartNumberMarker
Gets and sets the part number after which listing begins.
Parts
Gets and sets the Parts property.

PartDetails is a container for elements related to a particular part. A response can contain zero or more Part elements.

RequestId
Gets and sets the RequestId property.
(Inherited from S3Response.)
ResponseStream
Gets and sets the ResponseStream property. This property only has a valid value for GetObjectResponses. In order to use this stream without leaking the underlying resource, please wrap access to the stream within a using block.
CopyC#
(Inherited from S3Response.)
ResponseXml
Gets and sets the ResponseXml property. This is the original xml response received from S3
(Inherited from S3Response.)
StorageClass
Gets and sets the class of storage used to store the uploaded object.
ToString()()()()
String Representation of this object. Overrides Object.ToString()
(Inherited from S3Response.)
UploadId
Gets and sets the upload ID identifying the multipart upload whose parts are being listed.

Inheritance Hierarchy

System..::..Object
  Amazon.S3.Model..::..S3Response
    Amazon.S3.Model..::..ListPartsResponse

See Also