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

SetDriverIntervalMessage() public method

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

            Interval = interval;
        }