[]
Initializes a new instance of the RulesEngineRange class.
public RulesEngineRange()
Public Sub New()
Initializes a new instance of the RulesEngineRange class.
public RulesEngineRange(int firstItem, int lastItem)
Public Sub New(firstItem As Integer, lastItem As Integer)
| Type | Name | Description |
|---|---|---|
| int | firstItem | The index of the first item where the rule is applied. |
| int | lastItem | The index of the last item where the rule is applied. |
Initializes a new instance of the RulesEngineRange class.
public RulesEngineRange(int firstItem, int lastItem, string field)
Public Sub New(firstItem As Integer, lastItem As Integer, field As String)
| Type | Name | Description |
|---|---|---|
| int | firstItem | The index of the first item where the rule is applied. |
| int | lastItem | The index of the last item where the rule is applied. |
| string | field | The field that determines the range where the rule is applied. |
Initializes a new instance of the RulesEngineRange class.
public RulesEngineRange(string field)
Public Sub New(field As String)
| Type | Name | Description |
|---|---|---|
| string | field | The field of the item to compute the value. |
Initializes a new instance of the RulesEngineRange class.
public RulesEngineRange(int? firstItem, int? lastItem, IReadOnlyList<string> fields)
Public Sub New(firstItem As Integer?, lastItem As Integer?, fields As IReadOnlyList(Of String))
| Type | Name | Description |
|---|---|---|
| int? | firstItem | The index of the first item where the rule is applied. |
| int? | lastItem | The index of the last item where the rule is applied. |
| IReadOnlyList<string> | fields | The fields that determines the range where the rule is applied. |