| 1234567891011121314151617181920212223242526 |
- namespace System.Net.HomeMatic.Events {
- public class ValueChangedEventArgs : EventArgs {
- private HMDataPoint _dataPoint;
- private object _newValue;
- private object _oldValue;
- public ValueChangedEventArgs(HMDataPoint dp, object Old, object New) {
- this._dataPoint = dp;
- this._newValue = New;
- this._oldValue = Old;
- }
- public HMDataPoint DataPoint {
- get { return this._dataPoint; }
- }
- public object NewValue {
- get { return this._newValue; }
- }
- public object OldValue {
- get { return this._oldValue; }
- }
- }
- }
|