The ListObjectsResponse contains the list of S3Objects in the bucket and any headers returned by S3.

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 ListObjectsResponse : S3Response
Public Class ListObjectsResponse _
	Inherits S3Response
public ref class ListObjectsResponse : public S3Response

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
ListObjectsResponse()()()()
Initializes a new instance of the ListObjectsResponse class
AmazonId2
Gets and sets the AmzId2 property.
(Inherited from S3Response.)
CommonPrefix Obsolete.
Returns the list of common prefixes returned by S3. This property has been deprecated. Please use the CommonPrefixes property instead. CommonPrefixes
CommonPrefixes
Gets the CommonPrefixes property. A response can contain CommonPrefixes only if you specify a delimiter. When you do, CommonPrefixes contains all (if there are any) keys between Prefix and the next occurrence of the string specified by delimiter. In effect, CommonPrefixes lists keys that act like subdirectories in the directory specified by Prefix. For example, if prefix is notes/ and delimiter is a slash (/), in notes/summer/july, the common prefix is notes/summer/.
Delimiter
Gets and sets the Delimiter property. Causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be rolled up into a single result element in the CommonPrefixes collection.
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.)
IsTruncated
Gets and Sets the IsTruncated property. This property governs whether this is the last set of items that match the specified criteria or whether you need to make another call to S3 to retrieve more keys.
MaxKeys
Gets and sets the MaxKeys property. This is the maximum number of keys in the S3Objects collection. The value is derived from the MaxKeys parameter to ListObjectsRequest.
Metadata
Gets and sets the Metadata property.
(Inherited from S3Response.)
Name
Gets and sets the Name property. The bucket's name.
NextMarker
Gets and sets the NextMarker property. NextMarker is set by S3 only if a Delimiter was specified in the original ListObjects request. If a delimiter was not specified, the AWS SDK for .NET returns the last Key of the List of Objects retrieved from S3 as the NextMarker.
Prefix
Gets and sets the Prefix property. Keys that begin with the indicated prefix are listed.
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.)
S3Objects
Gets the S3Objects property. This is a list of objects in the bucket that match your search criteria.
ToString()()()()
String Representation of this object. Overrides Object.ToString()
(Inherited from S3Response.)

Inheritance Hierarchy

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

See Also