IntExpression 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
IntExpression() |
Initializes a new instance of the IntExpression class. |
IntExpression(Expression) |
Initializes a new instance of the IntExpression class. |
IntExpression(JToken) |
Initializes a new instance of the IntExpression class. |
IntExpression(Func<Object,Object>) |
Initializes a new instance of the IntExpression class. |
IntExpression(Int32) |
Initializes a new instance of the IntExpression class. |
IntExpression(String) |
Initializes a new instance of the IntExpression class. |
IntExpression()
Initializes a new instance of the IntExpression class.
public IntExpression ();
Public Sub New ()
Applies to
IntExpression(Expression)
Initializes a new instance of the IntExpression class.
public IntExpression (AdaptiveExpressions.Expression expression);
new AdaptiveExpressions.Properties.IntExpression : AdaptiveExpressions.Expression -> AdaptiveExpressions.Properties.IntExpression
Public Sub New (expression As Expression)
Parameters
- expression
- Expression
expression to resolve to an int.
Applies to
IntExpression(JToken)
Initializes a new instance of the IntExpression class.
public IntExpression (Newtonsoft.Json.Linq.JToken expressionOrValue);
new AdaptiveExpressions.Properties.IntExpression : Newtonsoft.Json.Linq.JToken -> AdaptiveExpressions.Properties.IntExpression
Public Sub New (expressionOrValue As JToken)
Parameters
- expressionOrValue
- Newtonsoft.Json.Linq.JToken
JToken to resolve to an int.
Applies to
IntExpression(Func<Object,Object>)
Initializes a new instance of the IntExpression class.
public IntExpression (Func<object,object> lambda);
new AdaptiveExpressions.Properties.IntExpression : Func<obj, obj> -> AdaptiveExpressions.Properties.IntExpression
Public Sub New (lambda As Func(Of Object, Object))
Parameters
Applies to
IntExpression(Int32)
Initializes a new instance of the IntExpression class.
public IntExpression (int value);
new AdaptiveExpressions.Properties.IntExpression : int -> AdaptiveExpressions.Properties.IntExpression
Public Sub New (value As Integer)
Parameters
- value
- Int32
value to return.
Applies to
IntExpression(String)
Initializes a new instance of the IntExpression class.
public IntExpression (string expression);
new AdaptiveExpressions.Properties.IntExpression : string -> AdaptiveExpressions.Properties.IntExpression
Public Sub New (expression As String)
Parameters
- expression
- String
string expression to resolve to an int.