AK.F1.Timing.Model.Session.SpeedCaptureModel.SpeedCaptureModel C# (CSharp) Method

SpeedCaptureModel() public method

Initialises a new instance of the SpeedCaptureModel class.
/// Thrown when is . ///
public SpeedCaptureModel ( DriverModel driver, SpeedCaptureLocation location, int speed ) : System
driver AK.F1.Timing.Model.Driver.DriverModel The driver which posted the speed.
location SpeedCaptureLocation The capture location.
speed int The captured speed.
return System
        public SpeedCaptureModel(DriverModel driver, SpeedCaptureLocation location, int speed)
        {
            Guard.NotNull(driver, "driver");

            Driver = driver;
            Location = location;
            Speed = speed;
        }
SpeedCaptureModel