WorkflowAncestorReferenceExpression.AnalyzeUsage method
Analyzes 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 WorkflowAncestorReferenceExpression
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.RuleAnalysisStores the fields and properties that are read by a workflow condition or written to by a workflow action.
isRead
Type: System.Booleantrue if the expression is being read from; otherwise, false.
isWritten
Type: System.Booleantrue if the expression is being written to; otherwise, false.
qualifier
Type: System.Workflow.Activities.Rules.RulePathQualifierThe path of a field or property.
Implements
IRuleExpression.AnalyzeUsage(RuleAnalysis, Boolean, Boolean, RulePathQualifier)
Remarks
This member is reserved for internal use and is not intended to be used directly from your code.
See also
Reference
WorkflowAncestorReferenceExpression class