Constructor Function
- Namespace
- YndigoBlue.Velocity.Model
- Assembly
- YndigoBlue.Velocity.dll
Function(FunctionType)
Initializes a new instance of the function with no arguments.
public Function(FunctionType functionType)
Parameters
functionTypeFunctionTypeThe type of function to represent.
Function(FunctionType, IElement)
Initializes a new instance of the function with a single element argument.
public Function(FunctionType functionType, IElement element)
Parameters
functionTypeFunctionTypeThe type of function to represent.
elementIElementThe single element to pass as the function argument.
Function(FunctionType, IEnumerable<IElement>)
Initializes a new instance of the function with a collection of element arguments.
public Function(FunctionType functionType, IEnumerable<IElement> elements)
Parameters
functionTypeFunctionTypeThe type of function to represent.
elementsIEnumerable<IElement>The elements to pass as function arguments.
Function(FunctionType, params IElement[])
Initializes a new instance of the function with multiple element arguments. For internal use by derived classes only.
protected Function(FunctionType functionType, params IElement[] elements)
Parameters
functionTypeFunctionTypeThe type of function to represent.
elementsIElement[]The elements to pass as function arguments.