LitS3.S3Service.ForEachObject C# (CSharp) Method

ForEachObject() public method

Queries a bucket for a listing of objects it contains and performs the given action on each object. The DefaultDelimiter will be used.
public ForEachObject ( string bucketName, Action action ) : void
bucketName string
action Action
return void
        public void ForEachObject(string bucketName, Action<ListEntry> action)
        {
            ForEachObject(bucketName, null, action);
        }

Same methods

S3Service::ForEachObject ( string bucketName, string prefix, Action action ) : void