Class ValueChangedNotificationResult<T>
Denotes the default implementation of a value change result
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public class ValueChangedNotificationResult<T> : IValueChangedNotificationResult<T>, IValueChangedNotificationResult, INotificationResult
Type Parameters
Name | Description |
---|---|
T | The type of the value |
Constructors
| Edit this page View SourceValueChangedNotificationResult(INotifiable, T, T)
Creates a new notification result
Declaration
public ValueChangedNotificationResult(INotifiable source, T oldValue, T newValue)
Parameters
Type | Name | Description |
---|---|---|
INotifiable | source | The source DDG node |
T | oldValue | The old value |
T | newValue | The new value |
Properties
| Edit this page View SourceChanged
True, if there were changes, otherwise False
Declaration
public bool Changed { get; }
Property Value
Type | Description |
---|---|
bool |
NewValue
Gets the new value
Declaration
public T NewValue { get; }
Property Value
Type | Description |
---|---|
T |
OldValue
Gets the old value
Declaration
public T OldValue { get; }
Property Value
Type | Description |
---|---|
T |
Source
The source of this result
Declaration
public INotifiable Source { get; }
Property Value
Type | Description |
---|---|
INotifiable |