| ConditionParserParseExpression Method (String) |
Namespace:
NLog.Conditions
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public static ConditionExpression ParseExpression(
string expressionText
)
Public Shared Function ParseExpression (
expressionText As String
) As ConditionExpression
Dim expressionText As String
Dim returnValue As ConditionExpression
returnValue = ConditionParser.ParseExpression(expressionText)
static member ParseExpression :
expressionText : string -> ConditionExpression
Parameters
- expressionText
- Type: SystemString
The expression to be parsed.
Return Value
Type:
ConditionExpressionThe root of the expression syntax tree which can be used to get the value of the condition in a specified context.
See Also