Click or drag to resize
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.Storage
Assembly: Oracle.Cloud.Mobile (in Oracle.Cloud.Mobile.dll) Version: 16.1.3.1 (16.1.3.1)
Syntax
public Task<List<StorageObject>> GetObjectsAsync(
	int offset,
	int limit
)

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: TaskListStorageObject
A list of StorageObjects downloaded from the service.
See Also