Show / Hide Table of Contents

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 Source

GetCircularDependencies(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.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX