ControlRuleSet Constructor

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0

Overload List

ControlRuleSet(IEnumerable<IProcessRule>) Initializes a new ControlRuleSet from the specified rules.
ControlRuleSet(String, IEnumerable<IProcessRule>) Initializes a new named ControlRuleSet from the specified rules.

ControlRuleSet(IEnumerable<IProcessRule>)

Initializes a new ControlRuleSet from the specified rules.
C#
public ControlRuleSet(
	IEnumerable<IProcessRule> rules
)

Parameters

rules  IEnumerable<IProcessRule>
The ordered collection of rules to evaluate.

Exceptions

ArgumentNullExceptionrules is null.

ControlRuleSet(String, IEnumerable<IProcessRule>)

Initializes a new named ControlRuleSet from the specified rules.
C#
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

ArgumentNullExceptionrules is null.

See Also