C# Class AK.F1.Timing.Model.Driver.QuallyTimesModel

Inheritance: ModelBase
Show file Open project: simoneb/ak-f1-timing Class Usage Examples

Public Methods

Method Description
GetTime ( int quallyNumber ) : TimeSpan?

Gets the qually time for the specified one-based qually number.

SetTime ( int quallyNumber, System.TimeSpan value ) : void

Sets the qually time for the specified one-based qually number.

Method Details

GetTime() public method

Gets the qually time for the specified one-based qually number.
/// Thrown when is not positive or is greater than three. ///
public GetTime ( int quallyNumber ) : TimeSpan?
quallyNumber int The one-based qually number.
return TimeSpan?

SetTime() public method

Sets the qually time for the specified one-based qually number.
/// Thrown when is not positive or is greater than three. ///
public SetTime ( int quallyNumber, System.TimeSpan value ) : void
quallyNumber int The one-based qually number.
value System.TimeSpan The new qually value.
return void