Control Rule Set Constructor
Definition
Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
Overload List
| Control | Initializes a new ControlRuleSet from the specified rules. |
| Control | Initializes a new named ControlRuleSet from the specified rules. |
ControlRuleSet(IEnumerable<IProcessRule>)
Initializes a new ControlRuleSet from the specified
rules.
public ControlRuleSet(
IEnumerable<IProcessRule> rules
)Parameters
- rules IEnumerable<IProcessRule>
- The ordered collection of rules to evaluate.
Exceptions
| Argument | rules is null. |
ControlRuleSet(String, IEnumerable<IProcessRule>)
Initializes a new named ControlRuleSet from the
specified rules.
public ControlRuleSet(
string? name,
IEnumerable<IProcessRule> rules
)Parameters
- name String
- The stable name for this rule set. May be null for anonymous rule sets.
- rules IEnumerable<IProcessRule>
- The ordered collection of rules to evaluate.
Exceptions
| Argument | rules is null. |