Table of Contents

Class BlockHashInput

Namespace
Concordium.Grpc.V2
Assembly
Concordium.Sdk.dll

Input to queries which take a block as a parameter.

public sealed class BlockHashInput : IMessage<BlockHashInput>, IEquatable<BlockHashInput>, IDeepCloneable<BlockHashInput>, IBufferMessage, IMessage
Inheritance
BlockHashInput
Implements
IMessage<BlockHashInput>
IDeepCloneable<BlockHashInput>
IBufferMessage
IMessage
Inherited Members

Constructors

BlockHashInput()

public BlockHashInput()

BlockHashInput(BlockHashInput)

public BlockHashInput(BlockHashInput other)

Parameters

other BlockHashInput

Fields

AbsoluteHeightFieldNumber

Field number for the "absolute_height" field.

public const int AbsoluteHeightFieldNumber = 4

Field Value

int

BestFieldNumber

Field number for the "best" field.

public const int BestFieldNumber = 1

Field Value

int

GivenFieldNumber

Field number for the "given" field.

public const int GivenFieldNumber = 3

Field Value

int

LastFinalFieldNumber

Field number for the "last_final" field.

public const int LastFinalFieldNumber = 2

Field Value

int

RelativeHeightFieldNumber

Field number for the "relative_height" field.

public const int RelativeHeightFieldNumber = 5

Field Value

int

Properties

AbsoluteHeight

Query for a block at absolute height, if a unique block can be identified at that height.

public AbsoluteBlockHeight AbsoluteHeight { get; set; }

Property Value

AbsoluteBlockHeight

Best

Query for the best block.

public Empty Best { get; set; }

Property Value

Empty

BlockHashInputCase

public BlockHashInput.BlockHashInputOneofCase BlockHashInputCase { get; }

Property Value

BlockHashInput.BlockHashInputOneofCase

Descriptor

public static MessageDescriptor Descriptor { get; }

Property Value

MessageDescriptor

Given

Query for the block specified by the hash. This hash should always be 32 bytes.

public BlockHash Given { get; set; }

Property Value

BlockHash

LastFinal

Query for the last finalized block.

public Empty LastFinal { get; set; }

Property Value

Empty

Parser

public static MessageParser<BlockHashInput> Parser { get; }

Property Value

MessageParser<BlockHashInput>

RelativeHeight

Query for a block at height relative to a genesis index.

public BlockHashInput.Types.RelativeHeight RelativeHeight { get; set; }

Property Value

BlockHashInput.Types.RelativeHeight

Methods

CalculateSize()

Calculates the size of this message in Protocol Buffer wire format, in bytes.

public int CalculateSize()

Returns

int

The number of bytes required to write this message to a coded output stream.

ClearBlockHashInput()

public void ClearBlockHashInput()

Clone()

Creates a deep clone of this object.

public BlockHashInput Clone()

Returns

BlockHashInput

A deep clone of this object.

Equals(BlockHashInput)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(BlockHashInput other)

Parameters

other BlockHashInput

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object)

Determines whether the specified object is equal to the current object.

public override bool Equals(object other)

Parameters

other object

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

MergeFrom(BlockHashInput)

Merges the given message into this one.

public void MergeFrom(BlockHashInput other)

Parameters

other BlockHashInput

Remarks

See the user guide for precise merge semantics.

MergeFrom(CodedInputStream)

Merges the data from the specified coded input stream with the current message.

public void MergeFrom(CodedInputStream input)

Parameters

input CodedInputStream

Remarks

See the user guide for precise merge semantics.

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

WriteTo(CodedOutputStream)

Writes the data to the given coded output stream.

public void WriteTo(CodedOutputStream output)

Parameters

output CodedOutputStream

Coded output stream to write the data to. Must not be null.