Class Dependency
This class represents a (non-calling) dependency
Implements
Inherited Members
Namespace: NMF.Transformations.Core
Assembly: NMF.Transformations.Core.dll
Syntax
public abstract class Dependency : ITransformationRuleDependency
Properties
| Edit this page View SourceExecuteBefore
Gets or sets a value indicating whether the dependency is executed before or after the base computation
Declaration
public bool ExecuteBefore { get; set; }
Property Value
Type | Description |
---|---|
bool |
NeedOutput
Gets or sets a value indicating whether the dependency needs the output of the base computation set
Declaration
public bool NeedOutput { get; set; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceHandleDependency(Computation)
Calls the transformation dependency for the given computation
Declaration
public abstract void HandleDependency(Computation computation)
Parameters
Type | Name | Description |
---|---|---|
Computation | computation | The computation that this dependency is to be called |