Interface IGetsAllVariablesFromContext
An object which can get all of the variable definitions and their corresponding values from an ExpressionContext.
Namespace: ZptSharp.Expressions
Assembly: ZptSharp.Abstractions.dll
Syntax
public interface IGetsAllVariablesFromContext
Methods
| Improve this Doc View SourceGetAllVariablesAsync(ExpressionContext)
Gets all of the variables & corresponding values from the specified context.
Declaration
Task<IDictionary<string, object>> GetAllVariablesAsync(ExpressionContext context)
Parameters
Type | Name | Description |
---|---|---|
ExpressionContext | context | An expression context. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IDictionary<System.String, System.Object>> | A dictionary of variables and values. |