-
Notifications
You must be signed in to change notification settings - Fork 0
4. Result Decision Type
Smrecz edited this page Sep 1, 2020
·
1 revision
Result is a leaf type and serves as a final Decision.
Result instance is created by calling .Build() on DecisionResultBuilder<T>.
Minimal Result configuration can be just a Title.
Title is a string defining Result name.
Title should be unique in scope of decision tree.
Defined by AddTitle(string)
Action is an expression that will be called on Result evaluation.
Defined by AddAction(Expression<Func<T, T>>)