AK.F1.Timing.Messages.Weather.SetWindSpeedMessage.SetWindSpeedMessage C# (CSharp) Method

SetWindSpeedMessage() public method

Initialises a new instance of the SetWindSpeedMessage class and specifies the new wind speed, in metres per second.
/// Thrown when is negative. ///
public SetWindSpeedMessage ( double speed ) : System
speed double The wind speed, in metres per second.
return System
        public SetWindSpeedMessage(double speed)
        {
            Guard.InRange(speed >= 0d, "speed");

            Speed = speed;
        }