Interface IDetectsCircularDependencies
An object which detects the presence of circular dependencies between executable rules.
Namespace: CSF.Validation.RuleExecution
Assembly: CSF.Validation.dll
Syntax
public interface IDetectsCircularDependencies
Methods
| Improve this Doc View SourceGetCircularDependencies(IEnumerable<ExecutableRuleAndDependencies>)
Gets a collection of any circular dependencies which are detected.
Declaration
IEnumerable<CircularDependency> GetCircularDependencies(IEnumerable<ExecutableRuleAndDependencies> rulesAndDependencies)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<ExecutableRuleAndDependencies> | rulesAndDependencies | A collection of the all of the rules and dependencies |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<CircularDependency> | A collection of circular dependency models, indicating the circular dependencies detected. |