Table of Contents

Interface IExpressionGlobals

Namespace
Acuit.Pinpoint.Workflows.Expressions
Assembly
Acuit.Pinpoint.Workflows.dll

The global variables available to C# expressions.

public interface IExpressionGlobals

Properties

Parameters

Gets the parameters, as an IParametersStorage.

IParametersStorage Parameters { get; }

Property Value

IParametersStorage

Variables

Gets the variables, as an IVariablesStorage.

IVariablesStorage Variables { get; }

Property Value

IVariablesStorage

param

Gets the parameters, as a dynamic type.

dynamic param { get; }

Property Value

dynamic

var

Gets the variables, as a dynamic type.

dynamic var { get; }

Property Value

dynamic