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.
Decompiles the custom expression into string form.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Public Sub Decompile ( _
stringBuilder As StringBuilder, _
parentExpression As CodeExpression _
)
'Usage
Dim instance As WorkflowCodeTypeReferenceExpression
Dim stringBuilder As StringBuilder
Dim parentExpression As CodeExpression
instance.Decompile(stringBuilder, parentExpression)
public void Decompile(
StringBuilder stringBuilder,
CodeExpression parentExpression
)
Parameters
stringBuilder
Type: System.Text.StringBuilderA mutable string for the decompiled expression. This method must append the decompiled syntax for this subexpression.
parentExpression
Type: System.CodeDom.CodeExpressionThe parent code expression. This can be used to determine operator precedence and whether this subexpression must be expressed in parentheses.
Implements
IRuleExpression.Decompile(StringBuilder, CodeExpression)
See Also
Reference
WorkflowCodeTypeReferenceExpression Class