Class FunctionParameter<T>
Represents a class that encapsulates parameters that have been passed to a TCQL function. The class provides methods to query if the function parameter has a value or not.
Inheritance
System.Object
FunctionParameter<T>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.QueryLanguage.Functions
Assembly: TimeCockpit.Data.dll
Syntax
public class FunctionParameter<T>
Type Parameters
| Name | Description |
|---|---|
| T | The underlying type of the parameter. |
Constructors
FunctionParameter()
Initializes a new instance of the FunctionParameter<T> class.
Declaration
public FunctionParameter()
FunctionParameter(T)
Initializes a new instance of the FunctionParameter<T> class.
Declaration
public FunctionParameter(T value)
Parameters
| Type | Name | Description |
|---|---|---|
| T | value | The param. |
Properties
HasValue
Gets a value indicating whether this instance has value.
Declaration
public bool HasValue { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Value
Gets or sets the value of the current instance of FunctionParameter<T>.
Declaration
public T Value { get; set; }
Property Value
| Type | Description |
|---|---|
| T |