Class Xfn2FunctionDto
Data transfer object for serialization of a function to an XFN version 2 file.
Inheritance
System.Object
Xfn2FunctionDto
Namespace: MESL.SqlRace.Domain.Functions.Persistence
Assembly: MESL.SqlRace.Domain.dll
Syntax
public sealed class Xfn2FunctionDto : Object, IXfnFunctionDto
Constructors
Xfn2FunctionDto()
Initializes a new instance of the Xfn2FunctionDto class.
Declaration
public Xfn2FunctionDto()
Properties
CalculateOverWholeSession
Gets or sets a value indicating whether to calculate over whole session.
Declaration
public bool CalculateOverWholeSession { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CalculationFrequency
Gets or sets the calculation frequency.
Declaration
public double CalculationFrequency { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
CalculationMode
Gets or sets the calculation mode.
Declaration
public string CalculationMode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FunctionMode
Gets or sets the function mode.
Declaration
public string FunctionMode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Implementation
Gets or sets the implementation.
Declaration
public ImplementationDto Implementation { get; set; }
Property Value
Type | Description |
---|---|
ImplementationDto |
InputParameters
Gets or sets the input parameters.
Declaration
public string[] InputParameters { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
InterpolateBetweenSamples
Gets or sets a value indicating whether to interpolate between samples.
Declaration
public bool InterpolateBetweenSamples { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
JoinGapsAroundNull
Gets or sets a value indicating whether to join gaps around null.
Declaration
public bool JoinGapsAroundNull { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Namespaces
Gets the namespaces.
Declaration
public XmlSerializerNamespaces Namespaces { get; }
Property Value
Type | Description |
---|---|
System.Xml.Serialization.XmlSerializerNamespaces |
OutputParameters
Gets or sets the output parameters.
Declaration
public Xfn2OutputParameterDto[] OutputParameters { get; set; }
Property Value
Type | Description |
---|---|
Xfn2OutputParameterDto[] |
StoreInSession
Gets or sets a value indicating whether to store in session.
Declaration
public bool StoreInSession { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Trigger
Gets or sets the trigger.
Declaration
public TriggerDto Trigger { get; set; }
Property Value
Type | Description |
---|---|
TriggerDto | The trigger. |