Interface IExpressionParser
Parses expression strings into compiled expressions that can be evaluated.
Supports parsing templates as well as standard expression strings.
TODO: This interface is not complete
Assembly: Steeltoe.Common.Abstractions.dll
Syntax
public interface IExpressionParser
Methods
|
Edit this page
View Source
ParseExpression(String)
Declaration
IExpression ParseExpression(string expressionString)
Parameters
Type |
Name |
Description |
System.String |
expressionString |
|
Returns
|
Edit this page
View Source
ParseExpression(String, IParserContext)
Declaration
IExpression ParseExpression(string expressionString, IParserContext context)
Parameters
Type |
Name |
Description |
System.String |
expressionString |
|
IParserContext |
context |
|
Returns