Interface ILap
Defines a lap.
Namespace: MAT.Atlas.Client.Platform.Data
Assembly: MAT.Atlas.Client.Platform.dll
Syntax
public interface ILap
Properties
EndTime
Lap end time.
Declaration
Nullable<long> EndTime { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Identifier
Unique lap identifier
Declaration
string Identifier { get; }
Property Value
Type | Description |
---|---|
System.String |
IsFastest
Fastest lap flag.
Declaration
bool IsFastest { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsInbound
Inbound lap flag.
Declaration
bool IsInbound { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsOutbound
Outbound lap flag.
Declaration
bool IsOutbound { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsSignificantLap
significant lap flag.
Declaration
bool IsSignificantLap { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
LapTime
Lap time.
Declaration
Nullable<long> LapTime { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Name
Lap identifier.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Number
Lap number.
Declaration
short Number { get; }
Property Value
Type | Description |
---|---|
System.Int16 |
SessionKey
Gets the session key.
Declaration
SessionKey SessionKey { get; }
Property Value
Type | Description |
---|---|
SessionKey | The session key. |
StartTime
Lap start time.
Declaration
long StartTime { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
TriggerSource
Lap trigger source.
Declaration
TriggerSource TriggerSource { get; }
Property Value
Type | Description |
---|---|
TriggerSource |
Methods
GetLapName(Boolean)
Gets the name of the lap.
Declaration
string GetLapName(bool isFastestLap)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isFastestLap | Force the isFastestLap flag (used when in the composite session more sessions are present each with own fastest lap, only one will keep the 'f', the others will be removed) |
Returns
Type | Description |
---|---|
System.String | The lap name. |