Show / Hide Table of Contents

Interface IFunctionInput

An interface defining function input.

Namespace: MESL.SqlRace.Domain.Functions
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IFunctionInput

Properties

InputParameterIndexes

Dictionary that keys the input parameter identifier against its index in the Values collection,

Declaration
IReadOnlyDictionary<string, int> InputParameterIndexes { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyDictionary<System.String, System.Int32>

Statuses

Collection of parameter sample statuses.

Declaration
DataStatusType[] Statuses { get; }
Property Value
Type Description
MAT.OCS.Core.DataStatusType[]

The statuses.

Timestamps

The timestamps that the values relate to.

Declaration
long[] Timestamps { get; }
Property Value
Type Description
System.Int64[]

The timestamps.

Values

Collection of parameter sample values.

Declaration
IReadOnlyList<double[]> Values { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<System.Double[]>

The values.

Back to top Generated by DocFX