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>IBufferMessageIMessage
- 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
BestFieldNumber
Field number for the "best" field.
public const int BestFieldNumber = 1
Field Value
GivenFieldNumber
Field number for the "given" field.
public const int GivenFieldNumber = 3
Field Value
LastFinalFieldNumber
Field number for the "last_final" field.
public const int LastFinalFieldNumber = 2
Field Value
RelativeHeightFieldNumber
Field number for the "relative_height" field.
public const int RelativeHeightFieldNumber = 5
Field Value
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
Best
Query for the best block.
public Empty Best { get; set; }
Property Value
BlockHashInputCase
public BlockHashInput.BlockHashInputOneofCase BlockHashInputCase { get; }
Property Value
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
LastFinal
Query for the last finalized block.
public Empty LastFinal { get; set; }
Property Value
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
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
BlockHashInputAn object to compare with this object.
Returns
Equals(object)
Determines whether the specified object is equal to the current object.
public override bool Equals(object other)
Parameters
other
object
Returns
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
CodedOutputStreamCoded output stream to write the data to. Must not be null.