CyrusBuilt.MonoPi.Components.Sensors.SensorStateChangedEventArgs.SensorStateChangedEventArgs C# (CSharp) Method

SensorStateChangedEventArgs() public method

Initializes a new instance of the CyrusBuilt.MonoPi.Components.Sensors.SensorStateChangedEventArgs class with the sensor that changed state, as well as the old and new states.
public SensorStateChangedEventArgs ( ISensor sensor, SensorState oldState, SensorState newState ) : System
sensor ISensor /// The sensor that changed state. ///
oldState SensorState /// The state of the sensor prior to the change. ///
newState SensorState /// The current state of the sensor. ///
return System
		public SensorStateChangedEventArgs(ISensor sensor, SensorState oldState, SensorState newState)
			: base() {
			this._sensor = sensor;
			this._oldState = oldState;
			this._newState = newState;
		}
		#endregion
SensorStateChangedEventArgs