StorageCollectionGetObjectAsync Method |
Returns a StorageObject given its ID. The contents of the object will be downloaded lazily.
Namespace: Oracle.Cloud.Mobile.StorageAssembly: Oracle.Cloud.Mobile (in Oracle.Cloud.Mobile.dll) Version: 16.1.3.1 (16.1.3.1)
Syntaxpublic Task<StorageObject> GetObjectAsync(
string objectId
)
Public Function GetObjectAsync (
objectId As String
) As Task(Of StorageObject)
public:
Task<StorageObject^>^ GetObjectAsync(
String^ objectId
)
member GetObjectAsync :
objectId : string -> Task<StorageObject>
Parameters
- objectId
- Type: SystemString
The ID of the Storage Object to return.
Return Value
Type:
TaskStorageObjectThe downloaded StorageObject.
See Also