Search Results for

    Show / Hide Table of Contents

    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

    true if this instance has value; otherwise, false.

    Value

    Gets or sets the value of the current instance of FunctionParameter<T>.

    Declaration
    public T Value { get; set; }
    Property Value
    Type Description
    T
    In This Article
    Back to top Copyright © 2025 software architects gmbh