| ConditionExpression Conversion (String to ConditionExpression) |
Converts condition text to a condition expression tree.
Namespace:
NLog.Conditions
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public 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