Class LapDataItem
This class represents the contents of a data item that can be attached to a lap
Inherited Members
Namespace: MESL.SqlRace.Domain
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class LapDataItem : SessionDataItem
Remarks
Data Items may also be attached to sessions via a SessionDataItem.
Constructors
LapDataItem(Int16, String, Boolean)
Initialises a new instance of the LapDataItem class.
Declaration
public LapDataItem(short lapNumber, string name, bool value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | lapNumber | The lap number. |
System.String | name | The name of the lap data item. |
System.Boolean | value | The value of the lap data item. |
LapDataItem(Int16, String, Byte[])
Initialises a new instance of the LapDataItem class.
Declaration
public LapDataItem(short lapNumber, string name, byte[] value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | lapNumber | The lap number. |
System.String | name | The name of the lap data item. |
System.Byte[] | value | The value of the lap data item. |
LapDataItem(Int16, String, DateTime)
Initialises a new instance of the LapDataItem class.
Declaration
public LapDataItem(short lapNumber, string name, DateTime value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | lapNumber | The lap number. |
System.String | name | The name of the lap data item. |
System.DateTime | value | The value of the lap data item. |
LapDataItem(Int16, String, Double)
Initialises a new instance of the LapDataItem class.
Declaration
public LapDataItem(short lapNumber, string name, double value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | lapNumber | The lap number. |
System.String | name | The name of the lap data item. |
System.Double | value | The value of the lap data item. |
LapDataItem(Int16, String, Int64)
Initialises a new instance of the LapDataItem class.
Declaration
public LapDataItem(short lapNumber, string name, long value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | lapNumber | The lap number. |
System.String | name | The name of the lap data item. |
System.Int64 | value | The value of the lap data item. |
LapDataItem(Int16, String, String)
Initialises a new instance of the LapDataItem class.
Declaration
public LapDataItem(short lapNumber, string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | lapNumber | The lap number. |
System.String | name | The name of the lap data item. |
System.String | value | The value of the lap data item. |
Properties
LapNumber
Gets the lap number to which the item is associated.
Declaration
public short LapNumber { get; }
Property Value
Type | Description |
---|---|
System.Int16 | The lap number. |