Table of Contents

Interface IRuleSet

Namespace
NRules.RuleModel
Assembly
NRules.RuleModel.dll

Represents a named set of rules.

public interface IRuleSet
Extension Methods

Properties

Name

Rule set name.

string Name { get; }

Property Value

string

Rules

Rules in the rule set.

IEnumerable<IRuleDefinition> Rules { get; }

Property Value

IEnumerable<IRuleDefinition>

Methods

Add(IEnumerable<IRuleDefinition>)

Adds rules to the rule set.

void Add(IEnumerable<IRuleDefinition> ruleDefinitions)

Parameters

ruleDefinitions IEnumerable<IRuleDefinition>

Rule definitions to add.