SPList.DoesUserHavePermissions Method (SPBasePermissions, Boolean)
Indicates whether the current user has a specified set of permissions on the list and optionally checks permissions on the current folder.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
Public Function DoesUserHavePermissions ( _
permissionMask As SPBasePermissions, _
checkFolder As Boolean _
) As Boolean
'Usage
Dim instance As SPList
Dim permissionMask As SPBasePermissions
Dim checkFolder As Boolean
Dim returnValue As Boolean
returnValue = instance.DoesUserHavePermissions(permissionMask, _
checkFolder)
public bool DoesUserHavePermissions(
SPBasePermissions permissionMask,
bool checkFolder
)
Parameters
permissionMask
Type: Microsoft.SharePoint.SPBasePermissionsA bitwise combination of enumeration values that specifies permissions for the list.
checkFolder
Type: System.Booleantrue to check permissions against the current folder, either the list root folder or a folder within the list; otherwise, false.
Return Value
Type: System.Boolean
true if the user has the specified permissions; otherwise, false.
Exceptions
Exception | Condition |
---|---|
UnauthorizedAccessException | The current user does not have the EnumeratePermissions right. |