Helper.CheckPermission Method (WorkflowContext, String, SPItemKey, ArrayList, ArrayList, String, SPItemKey)
Checks for valid permissions on specific list or list items during the execution of the specified workflow instance.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Public Shared Function CheckPermission ( _
context As WorkflowContext, _
currentListId As String, _
currentListItem As SPItemKey, _
users As ArrayList, _
roles As ArrayList, _
targetListId As String, _
targetListItem As SPItemKey _
) As Boolean
'Usage
Dim context As WorkflowContext
Dim currentListId As String
Dim currentListItem As SPItemKey
Dim users As ArrayList
Dim roles As ArrayList
Dim targetListId As String
Dim targetListItem As SPItemKey
Dim returnValue As Boolean
returnValue = Helper.CheckPermission(context, _
currentListId, currentListItem, _
users, roles, targetListId, targetListItem)
public static bool CheckPermission(
WorkflowContext context,
string currentListId,
SPItemKey currentListItem,
ArrayList users,
ArrayList roles,
string targetListId,
SPItemKey targetListItem
)
Parameters
context
Type: Microsoft.SharePoint.WorkflowActions.WorkflowContextA WorkflowContext object that contains properties that are associated with the active workflow instance.
- currentListId
Type: System.String
- currentListItem
Type: Microsoft.SharePoint.Workflow.SPItemKey
- users
Type: System.Collections.ArrayList
- roles
Type: System.Collections.ArrayList
- targetListId
Type: System.String
- targetListItem
Type: Microsoft.SharePoint.Workflow.SPItemKey
Return Value
Type: System.Boolean
true if the permissions are valid; otherwise, false.