MSQueryResult Class Reference
Inherits from | NSObject |
---|---|
Declared in | MSQueryResult.h |
Properties
items
The result from a successful read
@property (nonatomic, strong, readonly) NSArray *items
Discussion
The result from a successful read
Declared In
MSQueryResult.h
totalCount
there was not an error, then the items array will always be non-nil If the query included a request for the total count of items on the server (not just those returned in items array), the totalCount will have this value; otherwise totalCount will be -1.
@property (nonatomic, assign, readonly) NSInteger totalCount
Discussion
there was not an error, then the items array will always be non-nil If the query included a request for the total count of items on the server (not just those returned in items array), the totalCount will have this value; otherwise totalCount will be -1.
Declared In
MSQueryResult.h
nextLink
if returned from the server, it will contain the link to next page of results
@property (nonatomic, strong, readonly) NSString *nextLink
Discussion
if returned from the server, it will contain the link to next page of results
Declared In
MSQueryResult.h