StringTransformEvaluator 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
StringTransformEvaluator(String, Func<IReadOnlyList<Object>,Options,ValueTuple<Object,String>>) |
Initializes a new instance of the StringTransformEvaluator class. |
StringTransformEvaluator(String, Func<IReadOnlyList<Object>,Object>) |
Initializes a new instance of the StringTransformEvaluator class. |
StringTransformEvaluator(String, Func<IReadOnlyList<Object>,Options,ValueTuple<Object,String>>)
Initializes a new instance of the StringTransformEvaluator class.
public StringTransformEvaluator (string type, Func<System.Collections.Generic.IReadOnlyList<object>,AdaptiveExpressions.Options,(object, string)> function);
new AdaptiveExpressions.BuiltinFunctions.StringTransformEvaluator : string * Func<System.Collections.Generic.IReadOnlyList<obj>, AdaptiveExpressions.Options, ValueTuple<obj, string>> -> AdaptiveExpressions.BuiltinFunctions.StringTransformEvaluator
Public Sub New (type As String, function As Func(Of IReadOnlyList(Of Object), Options, ValueTuple(Of Object, String)))
Parameters
- type
- String
Name of the built-in function.
- function
- Func<IReadOnlyList<Object>,Options,ValueTuple<Object,String>>
The string transformation function, it takes a list of objects, an Options instance and returns a (object, string) tuple.
Applies to
StringTransformEvaluator(String, Func<IReadOnlyList<Object>,Object>)
Initializes a new instance of the StringTransformEvaluator class.
public StringTransformEvaluator (string type, Func<System.Collections.Generic.IReadOnlyList<object>,object> function);
new AdaptiveExpressions.BuiltinFunctions.StringTransformEvaluator : string * Func<System.Collections.Generic.IReadOnlyList<obj>, obj> -> AdaptiveExpressions.BuiltinFunctions.StringTransformEvaluator
Public Sub New (type As String, function As Func(Of IReadOnlyList(Of Object), Object))
Parameters
- type
- String
Name of the built-in function.
- function
- Func<IReadOnlyList<Object>,Object>
The string transformation function, it takes a list of objects and returns an object.