Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Used to analyze how the workflow uses fields and properties in the context type.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Public Sub AnalyzeUsage ( _
analysis As RuleAnalysis, _
isRead As Boolean, _
isWritten As Boolean, _
qualifier As RulePathQualifier _
)
'Usage
Dim instance As WorkflowCodeTypeReferenceExpression
Dim analysis As RuleAnalysis
Dim isRead As Boolean
Dim isWritten As Boolean
Dim qualifier As RulePathQualifier
instance.AnalyzeUsage(analysis, isRead, _
isWritten, qualifier)
public void AnalyzeUsage(
RuleAnalysis analysis,
bool isRead,
bool isWritten,
RulePathQualifier qualifier
)
Parameters
analysis
Type: System.Workflow.Activities.Rules.RuleAnalysisThe RuleAnalysis method that is used to store fields and properties that are read by a workflow condition or action.
isRead
Type: System.Booleantrue if the expression is being read from; false if the expression is not being read from.
isWritten
Type: System.Booleantrue if the expression is written to; false if the expression is not being written to.
qualifier
Type: System.Workflow.Activities.Rules.RulePathQualifierThe path of a field or property.
Implements
IRuleExpression.AnalyzeUsage(RuleAnalysis, Boolean, Boolean, RulePathQualifier)
See Also
Reference
WorkflowCodeTypeReferenceExpression Class