Class NodeFilter
Predicate filter on the node.id query parameter of the
/api/v1/network/nodes endpoint. Construct via one of the
static factories — the ctor is private so the operator is always
explicit at the call site.
Assembly: Hiero.dll
Syntax
public sealed class NodeFilter : 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(ulong)
Records whose node id is strictly greater than the given
value (gt:).
Declaration
public static NodeFilter After(ulong nodeId)
Parameters
| Type |
Name |
Description |
| ulong |
nodeId |
|
Returns
|
Edit this page
View Source
Before(ulong)
Records whose node id is strictly less than the given value
(lt:).
Declaration
public static NodeFilter Before(ulong nodeId)
Parameters
| Type |
Name |
Description |
| ulong |
nodeId |
|
Returns
|
Edit this page
View Source
Is(ulong)
Records whose node id equals the given value.
Declaration
public static NodeFilter Is(ulong nodeId)
Parameters
| Type |
Name |
Description |
| ulong |
nodeId |
|
Returns
|
Edit this page
View Source
OnOrAfter(ulong)
Records whose node id is at or greater than the given value
(gte:).
Declaration
public static NodeFilter OnOrAfter(ulong nodeId)
Parameters
| Type |
Name |
Description |
| ulong |
nodeId |
|
Returns
|
Edit this page
View Source
OnOrBefore(ulong)
Records whose node id is at or less than the given value
(lte:).
Declaration
public static NodeFilter OnOrBefore(ulong nodeId)
Parameters
| Type |
Name |
Description |
| ulong |
nodeId |
|
Returns
Implements