ArrayExpression<T> 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
ArrayExpression<T>() |
Initializes a new instance of the ArrayExpression<T> class. |
ArrayExpression<T>(Expression) |
Initializes a new instance of the ArrayExpression<T> class. |
ArrayExpression<T>(JToken) |
Initializes a new instance of the ArrayExpression<T> class. |
ArrayExpression<T>(IEnumerable<T>) |
Initializes a new instance of the ArrayExpression<T> class. |
ArrayExpression<T>(Func<Object,Object>) |
Initializes a new instance of the ArrayExpression<T> class. |
ArrayExpression<T>(String) |
Initializes a new instance of the ArrayExpression<T> class. |
ArrayExpression<T>()
Initializes a new instance of the ArrayExpression<T> class.
public ArrayExpression ();
Public Sub New ()
Applies to
ArrayExpression<T>(Expression)
Initializes a new instance of the ArrayExpression<T> class.
public ArrayExpression (AdaptiveExpressions.Expression expression);
new AdaptiveExpressions.Properties.ArrayExpression<'T> : AdaptiveExpressions.Expression -> AdaptiveExpressions.Properties.ArrayExpression<'T>
Public Sub New (expression As Expression)
Parameters
- expression
- Expression
expression which evaluates to array.
Applies to
ArrayExpression<T>(JToken)
Initializes a new instance of the ArrayExpression<T> class.
public ArrayExpression (Newtonsoft.Json.Linq.JToken expressionOrValue);
new AdaptiveExpressions.Properties.ArrayExpression<'T> : Newtonsoft.Json.Linq.JToken -> AdaptiveExpressions.Properties.ArrayExpression<'T>
Public Sub New (expressionOrValue As JToken)
Parameters
- expressionOrValue
- Newtonsoft.Json.Linq.JToken
JToken which is either a collection of (T) or expression which evaluates to array.
Applies to
ArrayExpression<T>(IEnumerable<T>)
Initializes a new instance of the ArrayExpression<T> class.
public ArrayExpression (System.Collections.Generic.IEnumerable<T> value);
new AdaptiveExpressions.Properties.ArrayExpression<'T> : seq<'T> -> AdaptiveExpressions.Properties.ArrayExpression<'T>
Public Sub New (value As IEnumerable(Of T))
Parameters
- value
- IEnumerable<T>
collection of (T).
Applies to
ArrayExpression<T>(Func<Object,Object>)
Initializes a new instance of the ArrayExpression<T> class.
public ArrayExpression (Func<object,object> lambda);
new AdaptiveExpressions.Properties.ArrayExpression<'T> : Func<obj, obj> -> AdaptiveExpressions.Properties.ArrayExpression<'T>
Public Sub New (lambda As Func(Of Object, Object))
Parameters
Applies to
ArrayExpression<T>(String)
Initializes a new instance of the ArrayExpression<T> class.
public ArrayExpression (string expression);
new AdaptiveExpressions.Properties.ArrayExpression<'T> : string -> AdaptiveExpressions.Properties.ArrayExpression<'T>
Public Sub New (expression As String)
Parameters
- expression
- String
expression which evaluates to array.