RuleChainingBehavior Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the forward chaining behavior of the RuleSet.
public enum class RuleChainingBehavior
public enum RuleChainingBehavior
type RuleChainingBehavior =
Public Enum RuleChainingBehavior
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | Indicates that no chaining is performed. Each rule is executed exactly once. |
UpdateOnly | 1 | Indicates that chaining is performed if executed actions explicitly specify it using a RuleUpdateAction. |
Full | 2 | Indicates that chaining is performed when fields or properties are modified by actions, RuleWriteAttribute are specified for methods called by actions, or when a RuleUpdateAction is performed. |