LitS3.S3Service.ListAllObjects C# (CSharp) 메소드

ListAllObjects() 공개 메소드

Queries a bucket for a listing of all objects it contains. The DefaultDelimiter will be used.
public ListAllObjects ( string bucketName ) : IEnumerable
bucketName string
리턴 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