LitS3.S3Service.ListAllObjects C# (CSharp) Method

ListAllObjects() public method

Queries a bucket for a listing of all objects it contains. The DefaultDelimiter will be used.
public ListAllObjects ( string bucketName ) : IEnumerable
bucketName string
return IEnumerable
        public IEnumerable<ListEntry> ListAllObjects(string bucketName)
        {
            return ListAllObjects(bucketName, null, DefaultDelimiter);
        }

Same methods

S3Service::ListAllObjects ( string bucketName, string prefix ) : IEnumerable
S3Service::ListAllObjects ( string bucketName, string prefix, string delimiter ) : IEnumerable