StorageGetCollectionAsync Method (String, String) |
Returns a Storage Collection with the given name from the service associated with the user. Subsequent accesses to Storage Objects in the
Storage Collection will only return Storage Objects owned by the user.
Namespace: Oracle.Cloud.Mobile.StorageAssembly: Oracle.Cloud.Mobile (in Oracle.Cloud.Mobile.dll) Version: 16.1.3.1 (16.1.3.1)
Syntaxpublic Task<StorageCollection> GetCollectionAsync(
string collectionName,
string userId
)
Public Function GetCollectionAsync (
collectionName As String,
userId As String
) As Task(Of StorageCollection)
public:
Task<StorageCollection^>^ GetCollectionAsync(
String^ collectionName,
String^ userId
)
member GetCollectionAsync :
collectionName : string *
userId : string -> Task<StorageCollection>
Parameters
- collectionName
- Type: SystemString
The name of the Storage Collection. - userId
- Type: SystemString
The ID of the user.
Return Value
Type:
TaskStorageCollection
See Also