Class ContractActionIndexFilter
Predicate filter on the index position of a contract
action within a transaction's ordered call graph. Construct
via one of the static factories — the ctor is private so the
operator is always explicit in the call site.
Inheritance
ContractActionIndexFilter
Assembly: Hiero.dll
Syntax
public sealed class ContractActionIndexFilter : IMirrorFilter, IMirrorQueryParameter
Properties
|
Edit this page
View Source
Name
The query parameter name recognized by the remote mirror node.
Declaration
public string Name { get; }
Property Value
|
Edit this page
View Source
Value
The value of the query parameter sent to the mirror node —
already includes the operator prefix where applicable.
Declaration
public string Value { get; }
Property Value
Methods
|
Edit this page
View Source
After(int)
Actions whose index is strictly greater than the given value
(gt:).
Declaration
public static ContractActionIndexFilter After(int index)
Parameters
| Type |
Name |
Description |
| int |
index |
|
Returns
|
Edit this page
View Source
Before(int)
Actions whose index is strictly less than the given value
(lt:).
Declaration
public static ContractActionIndexFilter Before(int index)
Parameters
| Type |
Name |
Description |
| int |
index |
|
Returns
|
Edit this page
View Source
Is(int)
Actions whose index equals the given value.
Declaration
public static ContractActionIndexFilter Is(int index)
Parameters
| Type |
Name |
Description |
| int |
index |
|
Returns
|
Edit this page
View Source
NotIs(int)
Actions whose index is not equal to the given value
(ne:).
Declaration
public static ContractActionIndexFilter NotIs(int index)
Parameters
| Type |
Name |
Description |
| int |
index |
|
Returns
|
Edit this page
View Source
OnOrAfter(int)
Actions whose index is at or greater than the given value
(gte:).
Declaration
public static ContractActionIndexFilter OnOrAfter(int index)
Parameters
| Type |
Name |
Description |
| int |
index |
|
Returns
|
Edit this page
View Source
OnOrBefore(int)
Actions whose index is at or less than the given value
(lte:).
Declaration
public static ContractActionIndexFilter OnOrBefore(int index)
Parameters
| Type |
Name |
Description |
| int |
index |
|
Returns
Implements