 | ConditionExpression Conversion (String to ConditionExpression) |
Converts condition text to a condition expression tree.
Namespace:
NLog.Conditions
Assembly:
NLog (in NLog.dll) Version: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
Syntaxpublic static implicit operator ConditionExpression? (
string? conditionExpressionText
)
Public Shared Widening Operator CType (
conditionExpressionText As String
) As ConditionExpression
Dim input As String
Dim output As ConditionExpression
output = CType(input, ConditionExpression)
F# does not support the declaration of new casting operators.
Parameters
- conditionExpressionText
- Type: SystemString
Condition text to be converted.
Return Value
Type:
ConditionExpressionCondition expression tree.
See Also