Table of Contents

Class QueryResponse<T>

Namespace
Concordium.Sdk.Client
Assembly
Concordium.Sdk.dll
public sealed record QueryResponse<T> : IEquatable<QueryResponse<T>>

Type Parameters

T

Return type

Inheritance
QueryResponse<T>
Implements
Inherited Members

Constructors

QueryResponse(BlockHash, T)

public QueryResponse(BlockHash BlockHash, T Response)

Parameters

BlockHash BlockHash

Block hash for which the query applies.

Response T

The result of the query.

Properties

BlockHash

Block hash for which the query applies.

public BlockHash BlockHash { get; init; }

Property Value

BlockHash

Response

The result of the query.

public T Response { get; init; }

Property Value

T