Interface IRuleSet
Represents a named set of rules.
public interface IRuleSet
- Extension Methods
Properties
Name
Rule set name.
string Name { get; }
Property Value
Rules
Rules in the rule set.
IEnumerable<IRuleDefinition> Rules { get; }
Property Value
Methods
Add(IEnumerable<IRuleDefinition>)
Adds rules to the rule set.
void Add(IEnumerable<IRuleDefinition> ruleDefinitions)
Parameters
ruleDefinitions
IEnumerable<IRuleDefinition>Rule definitions to add.