WABlobContainerFetchRequest Class Reference
Inherits from | NSObject |
Declared in | WABlobContainerFetchRequest.h |
Overview
A class that represents a Windows Azure Blob Container Storage fetch request.
The request is used with the WACloudStorageClient when working with blobs.
Tasks
-
containerName
The name of the container to fetch
property -
prefix
Filters the results to return only containers whose names begin with the specified prefix.
property -
maxResult
Specifies the maximum number of containers to return. 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 -
resultContinuation
The continuation to use in the fetch request.
property -
+ fetchRequest
Create a new WABlobContainerFetchRequest.
-
+ fetchRequestWithResultContinuation:
Create a new WABlobContainerFetchRequest with a result continuation.
Properties
containerName
The name of the container to fetch
@property (nonatomic, copy) NSString *containerName
Declared In
WABlobContainerFetchRequest.h
maxResult
Specifies the maximum number of containers to return. 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
WABlobContainerFetchRequest.h
prefix
Filters the results to return only containers whose names begin with the specified prefix.
@property (nonatomic, copy) NSString *prefix
Declared In
WABlobContainerFetchRequest.h
Class Methods
fetchRequest
Create a new WABlobContainerFetchRequest.
+ (WABlobContainerFetchRequest *)fetchRequest
Return Value
The newly initialized WABlobContainerFetchRequest object.
Declared In
WABlobContainerFetchRequest.h
fetchRequestWithResultContinuation:
Create a new WABlobContainerFetchRequest with a result continuation.
+ (WABlobContainerFetchRequest *)fetchRequestWithResultContinuation:(WAResultContinuation *)resultContinuation
Parameters
- resultContinuation
The continuation to use in the fetch request.
Return Value
The newly initialized WABlobContainerFetchRequest object.
Declared In
WABlobContainerFetchRequest.h