AK.F1.Timing.Messages.Driver.SetDriverGapMessage.SetDriverGapMessage C# (CSharp) Method

SetDriverGapMessage() public method

Initialises a new instance of the SetDriverGapMessage class and specifies if the Id of the driver and the gap.
/// Thrown when is not positive. /// /// Thrown when is . ///
public SetDriverGapMessage ( int driverId, Gap gap ) : System
driverId int The Id of the driver.
gap Gap The gap.
return System
        public SetDriverGapMessage(int driverId, Gap gap)
            : base(driverId)
        {
            Guard.NotNull(gap, "gap");

            Gap = gap;
        }