TdxCloudStorageItemPermissions.FindByID(string) Method
In This Article
Returns a stored access permission by its unique identifier.
#Declaration
Delphi
function FindByID(const AID: string): TdxCloudStorageItemPermission;
#Parameters
Name | Type | Description |
---|---|---|
AID | string | A unique identifier of a file or folder in a cloud storage. |
#Returns
Type | Description |
---|---|
Tdx |
A permission to access or edit a file or folder in a cloud storage. |
#Remarks
Call this function and pass an ID of a storage item’s access permission as the AID parameter to access this permission. The FindByID function returns nil (in Delphi) or nullptr/NULL (in C++Builder) if the collection does not store an access permission with the specified identifier.
Note
Call the Fetch
See Also