Edit

IVariableWorkflowAction interface

Namespace: Microsoft.Azure.Workflows.Sdk

Extends IWorkflowAction to support variable operations, providing access to the variable name and current value used by built-in variable actions.

Usage

IVariableWorkflowAction initVar = WorkflowActions.BuiltIn.Variables.InitializeVariable<string>(
    name: () => "greeting",
    value: () => "Hello");

string varName = initVar.VariableName; // "greeting"

Properties

Name Description Type Required
Value Gets the value associated with the variable action. JToken No
VariableName Gets the workflow variable name targeted by the action. string No

Methods

This type implements Then() methods from IChainableNode. See that page for full documentation of all overloads.