Represents a successful query response.
More...
|
| QuerySuccess (MappingContext ctx, ISerializer< T > serializer, JsonElement json) |
| Initializes a new instance of the QuerySuccess<T> class, deserializing the query response into the specified type.
|
|
|
T | Data [get] |
| Gets the deserialized data from the query response.
|
|
string? | StaticType [get] |
| Gets the static type information from the query response, if available.
|
|
JsonElement | RawJson [get] |
| The raw JSON of the query response.
|
|
long | LastSeenTxn [get] |
| Gets the last transaction seen by this query.
|
|
long | SchemaVersion [get] |
| Gets the schema version.
|
|
string | Summary = "" [get] |
| Gets a summary of the query execution.
|
|
Dictionary< string, string > | QueryTags = new() [get] |
| Gets a dictionary of query tags, providing additional context about the query.
|
|
QueryStats | Stats [get] |
| Gets the statistics related to the query execution.
|
|
Represents a successful query response.
- Template Parameters
-
T | The type of data expected in the query result. |
Definition at line 124 of file QueryResponse.cs.
◆ QuerySuccess()
Initializes a new instance of the QuerySuccess<T> class, deserializing the query response into the specified type.
- Parameters
-
ctx | The serialization context used for deserializing the response data. |
serializer | A deserializer for the response data type. |
json | The parsed JSON response body. |
Definition at line 142 of file QueryResponse.cs.
◆ Data
Gets the deserialized data from the query response.
Definition at line 129 of file QueryResponse.cs.
◆ StaticType
Gets the static type information from the query response, if available.
Definition at line 134 of file QueryResponse.cs.
The documentation for this class was generated from the following file: