DBSHARINGRelinquishFolderMembershipErrorTag
Objective-C
enum DBSHARINGRelinquishFolderMembershipErrorTag : NSInteger {}
Swift
@frozen enum DBSHARINGRelinquishFolderMembershipErrorTag : Int, @unchecked Sendable
The DBSHARINGRelinquishFolderMembershipErrorTag enum type represents the
possible tag states with which the
DBSHARINGRelinquishFolderMembershipError union can exist.
-
(no description).
Declaration
Objective-C
DBSHARINGRelinquishFolderMembershipErrorAccessErrorSwift
case accessError = 0 -
The current user is the owner of the shared folder. Owners cannot relinquish membership to their own folders. Try unsharing or transferring ownership first.
Declaration
Objective-C
DBSHARINGRelinquishFolderMembershipErrorFolderOwnerSwift
case folderOwner = 1 -
The shared folder is currently mounted. Unmount the shared folder before relinquishing membership.
Declaration
Objective-C
DBSHARINGRelinquishFolderMembershipErrorMountedSwift
case mounted = 2 -
The current user has access to the shared folder via a group. You can’t relinquish membership to folders shared via groups.
Declaration
Objective-C
DBSHARINGRelinquishFolderMembershipErrorGroupAccessSwift
case groupAccess = 3 -
This action cannot be performed on a team shared folder.
Declaration
Objective-C
DBSHARINGRelinquishFolderMembershipErrorTeamFolderSwift
case teamFolder = 4 -
The current user does not have permission to perform this action.
Declaration
Objective-C
DBSHARINGRelinquishFolderMembershipErrorNoPermissionSwift
case noPermission = 5 -
The current user only has inherited access to the shared folder. You can’t relinquish inherited membership to folders.
Declaration
Objective-C
DBSHARINGRelinquishFolderMembershipErrorNoExplicitAccessSwift
case noExplicitAccess = 6 -
(no description).
Declaration
Objective-C
DBSHARINGRelinquishFolderMembershipErrorOtherSwift
case other = 7
View on GitHub
DBSHARINGRelinquishFolderMembershipErrorTag Enumeration Reference