C# Class CyrusBuilt.MonoPi.Components.Temperature.TemperatureChangeEventArgs

Temperature change event arguments class.
Inheritance: System.EventArgs
显示文件 Open project: cyrusbuilt/MonoPi Class Usage Examples

Public Methods

Method Description
TemperatureChangeEventArgs ( Double oldTemp, Double newTemp ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.Components.Temperature.TemperatureChangeEventArgs class class with the old and new temperature values.

Method Details

TemperatureChangeEventArgs() public method

Initializes a new instance of the CyrusBuilt.MonoPi.Components.Temperature.TemperatureChangeEventArgs class class with the old and new temperature values.
public TemperatureChangeEventArgs ( Double oldTemp, Double newTemp ) : System
oldTemp Double /// The temperature value prior to the change event. ///
newTemp Double /// The temperature value since the change event. ///
return System