StorageCollectionGetObjectsAsync Method |
Returns a list of Storage Objects from the collection starting from the offset and up to the limit. The service may
return fewer objects.
Namespace: Oracle.Cloud.Mobile.StorageAssembly: Oracle.Cloud.Mobile (in Oracle.Cloud.Mobile.dll) Version: 16.1.3.1 (16.1.3.1)
Syntaxpublic Task<List<StorageObject>> GetObjectsAsync(
int offset,
int limit
)
Public Function GetObjectsAsync (
offset As Integer,
limit As Integer
) As Task(Of List(Of StorageObject))
public:
Task<List<StorageObject^>^>^ GetObjectsAsync(
int offset,
int limit
)
member GetObjectsAsync :
offset : int *
limit : int -> Task<List<StorageObject>>
Parameters
- offset
- Type: SystemInt32
The offset at which to start. Must be greater than 0. - limit
- Type: SystemInt32
The max number of Storage Objects to return. Must be non-negative.
Return Value
Type:
TaskListStorageObjectA list of StorageObjects downloaded from the service.
See Also