Class ConstantValue<T>
Denotes a constant value
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public sealed class ConstantValue<T> : INotifyValue<T>, INotifiable, IDisposable
Type Parameters
Name | Description |
---|---|
T | The type of the value |
Constructors
| Edit this page View SourceConstantValue(T)
Creates a new instance
Declaration
public ConstantValue(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The value |
Properties
| Edit this page View SourceDependencies
Nodes that notify this node.
Declaration
public IEnumerable<INotifiable> Dependencies { get; }
Property Value
Type | Description |
---|---|
IEnumerable<INotifiable> |
ExecutionMetaData
Used by the execution engine during incremental execution.
Declaration
public ExecutionMetaData ExecutionMetaData { get; }
Property Value
Type | Description |
---|---|
ExecutionMetaData |
Successors
The nodes that will get notified by this node.
Declaration
public ISuccessorList Successors { get; }
Property Value
Type | Description |
---|---|
ISuccessorList |
Value
Gets the current value
Declaration
public T Value { get; }
Property Value
Type | Description |
---|---|
T |
Methods
| Edit this page View SourceDispose()
Declaration
public void Dispose()
Notify(IList<INotificationResult>)
Gets called when one of the dependencies signals a notification.
Declaration
public INotificationResult Notify(IList<INotificationResult> sources)
Parameters
Type | Name | Description |
---|---|---|
IList<INotificationResult> | sources | Contains information about what triggered this notification. |
Returns
Type | Description |
---|---|
INotificationResult | An object describing the changes that happened in this notification. |
Events
| Edit this page View SourceValueChanged
Gets fired when the value changed
Declaration
public event EventHandler<ValueChangedEventArgs> ValueChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |