Inherits from NSObject
Declared in WABlobFetchRequest.h

Overview

A class that represents a Windows Azure Blob Storage fetch request.

The request is used with the WACloudStorageClient when working with blobs.

Tasks

Properties

container

The container for the fetch request.

@property (readonly) WABlobContainer *container

Declared In

WABlobFetchRequest.h

maxResult

Specifies the maximum number of blobs to return, including all BlobPrefix elements. If the request does not specify maxresults or specifies a value greater than 5,000, the server will return up to 5,000 items.

@property (nonatomic, assign) NSUInteger maxResult

Declared In

WABlobFetchRequest.h

prefix

Filters the results to return only blobs whose names begin with the specified prefix.

@property (nonatomic, copy) NSString *prefix

Declared In

WABlobFetchRequest.h

resultContinuation

The continuation to use in the fetch request.

@property (nonatomic, retain) WAResultContinuation *resultContinuation

Declared In

WABlobFetchRequest.h

useFlatListing

A value indicating whether the blob listing operation will list all blobs in a container in a flat listing, or whether it will list blobs hierarchically, by virtual directory.

@property (nonatomic, assign) BOOL useFlatListing

Declared In

WABlobFetchRequest.h

Class Methods

fetchRequestWithContainer:

Create a new WABlobFetchRequest with a container name.

+ (WABlobFetchRequest *)fetchRequestWithContainer:(WABlobContainer *)container

Parameters

container

The container for the fetch request.

Return Value

The newly initialized WABlobFetchRequest object.

Declared In

WABlobFetchRequest.h

fetchRequestWithContainer:resultContinuation:

Create a new WABlobFetchRequest with a container name.

+ (WABlobFetchRequest *)fetchRequestWithContainer:(WABlobContainer *)container resultContinuation:(WAResultContinuation *)resultContinuation

Parameters

container

The container for the fetch request.

resultContinuation

The continuation to use in the fetch request.

Return Value

The newly initialized WABlobFetchRequest object.

Declared In

WABlobFetchRequest.h