BoolExpression Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BoolExpression() |
Initializes a new instance of the BoolExpression class. |
BoolExpression(Expression) |
Initializes a new instance of the BoolExpression class. |
BoolExpression(JToken) |
Initializes a new instance of the BoolExpression class. |
BoolExpression(Boolean) |
Initializes a new instance of the BoolExpression class. |
BoolExpression(Func<Object,Object>) |
Initializes a new instance of the BoolExpression class. |
BoolExpression(String) |
Initializes a new instance of the BoolExpression class. |
BoolExpression()
Initializes a new instance of the BoolExpression class.
public BoolExpression ();
Public Sub New ()
Applies to
BoolExpression(Expression)
Initializes a new instance of the BoolExpression class.
public BoolExpression (AdaptiveExpressions.Expression expression);
new AdaptiveExpressions.Properties.BoolExpression : AdaptiveExpressions.Expression -> AdaptiveExpressions.Properties.BoolExpression
Public Sub New (expression As Expression)
Parameters
- expression
- Expression
expression to resolve to bool.
Applies to
BoolExpression(JToken)
Initializes a new instance of the BoolExpression class.
public BoolExpression (Newtonsoft.Json.Linq.JToken expressionOrValue);
new AdaptiveExpressions.Properties.BoolExpression : Newtonsoft.Json.Linq.JToken -> AdaptiveExpressions.Properties.BoolExpression
Public Sub New (expressionOrValue As JToken)
Parameters
- expressionOrValue
- Newtonsoft.Json.Linq.JToken
expression or value to resolve to bool.
Applies to
BoolExpression(Boolean)
Initializes a new instance of the BoolExpression class.
public BoolExpression (bool value);
new AdaptiveExpressions.Properties.BoolExpression : bool -> AdaptiveExpressions.Properties.BoolExpression
Public Sub New (value As Boolean)
Parameters
- value
- Boolean
bool value.
Applies to
BoolExpression(Func<Object,Object>)
Initializes a new instance of the BoolExpression class.
public BoolExpression (Func<object,object> lambda);
new AdaptiveExpressions.Properties.BoolExpression : Func<obj, obj> -> AdaptiveExpressions.Properties.BoolExpression
Public Sub New (lambda As Func(Of Object, Object))
Parameters
Applies to
BoolExpression(String)
Initializes a new instance of the BoolExpression class.
public BoolExpression (string expression);
new AdaptiveExpressions.Properties.BoolExpression : string -> AdaptiveExpressions.Properties.BoolExpression
Public Sub New (expression As String)
Parameters
- expression
- String
expression to resolve to bool.