Class BehaviorRuleFlowControlBase
Base class controlling the flow of a behavior rule.
Inheritance
System.Object
BehaviorRuleFlowControlBase
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Kephas.Behaviors
Assembly: Kephas.Core.dll
Syntax
public abstract class BehaviorRuleFlowControlBase : Loggable, ILoggable, IBehaviorRuleFlowControl
Constructors
| Improve this Doc View SourceBehaviorRuleFlowControlBase()
Initializes a new instance of the BehaviorRuleFlowControlBase class.
Declaration
protected BehaviorRuleFlowControlBase()
Properties
| Improve this Doc View SourceIsEndRule
Gets or sets a value indicating whether this rule ends the processing flow.
Declaration
public bool IsEndRule { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ProcessingPriority
Gets or sets the processing priority.
Declaration
public int ProcessingPriority { get; protected set; }
Property Value
Type | Description |
---|---|
System.Int32 | The processing priority. |
Methods
| Improve this Doc View SourceComputeIsEndRule()
Calculates the value of the IsEndRule property.
Declaration
protected virtual bool ComputeIsEndRule()
Returns
Type | Description |
---|---|
System.Boolean | The calculated value of the IsEndRule property. |
ComputeProcessingPriority()
Calculates the value of the ProcessingPriority property.
Declaration
protected virtual int ComputeProcessingPriority()
Returns
Type | Description |
---|---|
System.Int32 | The calculated value of the ProcessingPriority property. |