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

SetAtmosphericPressureMessage() public method

Initialises a new instance of the SetAtmosphericPressureMessage class and specifies the new atmospheric pressure, in millibars.
/// Thrown when is negative. ///
public SetAtmosphericPressureMessage ( double pressure ) : System
pressure double The atmospheric pressure, in millibars.
return System
        public SetAtmosphericPressureMessage(double pressure)
        {
            Guard.InRange(pressure > 0D, "pressure");

            Pressure = pressure;
        }