Class SerialNumberFilter
Predicate filter on the serialnumber query parameter
used by the NFT-listing endpoints. Construct via one of the
static factories — the ctor is private so the operator is
always explicit at the call site.
Inheritance
SerialNumberFilter
Assembly: Hiero.dll
Syntax
public sealed class SerialNumberFilter : 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(long)
Records whose serial number is strictly greater than the
given value (gt:).
Declaration
public static SerialNumberFilter After(long serialNumber)
Parameters
| Type |
Name |
Description |
| long |
serialNumber |
|
Returns
|
Edit this page
View Source
Before(long)
Records whose serial number is strictly less than the given
value (lt:).
Declaration
public static SerialNumberFilter Before(long serialNumber)
Parameters
| Type |
Name |
Description |
| long |
serialNumber |
|
Returns
|
Edit this page
View Source
Is(long)
Records whose serial number equals the given value.
Declaration
public static SerialNumberFilter Is(long serialNumber)
Parameters
| Type |
Name |
Description |
| long |
serialNumber |
|
Returns
|
Edit this page
View Source
OnOrAfter(long)
Records whose serial number is at or greater than the given
value (gte:).
Declaration
public static SerialNumberFilter OnOrAfter(long serialNumber)
Parameters
| Type |
Name |
Description |
| long |
serialNumber |
|
Returns
|
Edit this page
View Source
OnOrBefore(long)
Records whose serial number is at or less than the given
value (lte:).
Declaration
public static SerialNumberFilter OnOrBefore(long serialNumber)
Parameters
| Type |
Name |
Description |
| long |
serialNumber |
|
Returns
Implements