VisualBasicDesignerHelper.RecompileVisualBasicValue Method

Definition

Recompiles a previously compiled VisualBasicValue<TResult> expression.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::Activities::Activity ^ RecompileVisualBasicValue(System::Activities::ActivityWithResult ^ visualBasicValue, [Runtime::InteropServices::Out] Type ^ % returnType, [Runtime::InteropServices::Out] System::Activities::ExpressionParser::SourceExpressionException ^ % compileError, [Runtime::InteropServices::Out] Microsoft::VisualBasic::Activities::VisualBasicSettings ^ % vbSettings);
public static System.Activities.Activity RecompileVisualBasicValue (System.Activities.ActivityWithResult visualBasicValue, out Type returnType, out System.Activities.ExpressionParser.SourceExpressionException compileError, out Microsoft.VisualBasic.Activities.VisualBasicSettings vbSettings);
static member RecompileVisualBasicValue : System.Activities.ActivityWithResult * Type * SourceExpressionException * VisualBasicSettings -> System.Activities.Activity
Public Shared Function RecompileVisualBasicValue (visualBasicValue As ActivityWithResult, ByRef returnType As Type, ByRef compileError As SourceExpressionException, ByRef vbSettings As VisualBasicSettings) As Activity

Parameters

visualBasicValue
ActivityWithResult

The expression to recompile.

returnType
Type

When this method returns, contains the result type of the expression. This parameter is passed uninitialized.

compileError
SourceExpressionException

When this method returns, contains any compilation errors that occurred, or null if compilation was successful. This parameter is passed uninitialized. This parameter is passed uninitialized.

vbSettings
VisualBasicSettings

When this method returns, contains the settings required to compile the expression.

Returns

The recompiled VisualBasicValue<TResult> expression.

Applies to