Show / Hide Table of Contents

Class InvalidBlockTxHashException

Inheritance
Object
Exception
InvalidBlockException
InvalidBlockTxHashException
Implements
System.Runtime.Serialization.ISerializable
IEquatable<InvalidBlockTxHashException>
Inherited Members
Exception.GetBaseException()
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
System.Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
System.Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState
Object.Equals(Object, Object)
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Namespace: Libplanet.Types.Blocks
Assembly: Libplanet.Types.dll
Syntax
[Serializable]
public class InvalidBlockTxHashException : InvalidBlockException, ISerializable, IEquatable<InvalidBlockTxHashException>

Constructors

| Improve this Doc View Source

InvalidBlockTxHashException(SerializationInfo, StreamingContext)

Declaration
protected InvalidBlockTxHashException(SerializationInfo info, StreamingContext context)
Parameters
Type Name Description
SerializationInfo info
StreamingContext context
| Improve this Doc View Source

InvalidBlockTxHashException(String, Nullable<HashDigest<SHA256>>, Nullable<HashDigest<SHA256>>)

Initializes a new instance of InvalidBlockTxHashException class.

Declaration
public InvalidBlockTxHashException(string message, HashDigest<SHA256>? blockTxHash, HashDigest<SHA256>? calculatedTxHash)
Parameters
Type Name Description
String message

The message that describes the error.

Nullable<HashDigest<SHA256>> blockTxHash

The hash digest of TxHash.

Nullable<HashDigest<SHA256>> calculatedTxHash

The calculated hash digest from Transactions.

Properties

| Improve this Doc View Source

BlockTxHash

The hash digest from actual block.

Declaration
public HashDigest<SHA256>? BlockTxHash { get; }
Property Value
Type Description
Nullable<HashDigest<SHA256>>
| Improve this Doc View Source

CalculatedTxHash

The calculated hash digest from transactions in the block.

Declaration
public HashDigest<SHA256>? CalculatedTxHash { get; }
Property Value
Type Description
Nullable<HashDigest<SHA256>>

Methods

| Improve this Doc View Source

Equals(InvalidBlockTxHashException)

Declaration
public bool Equals(InvalidBlockTxHashException other)
Parameters
Type Name Description
InvalidBlockTxHashException other
Returns
Type Description
System.Boolean
| Improve this Doc View Source

Equals(Object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
Object obj
Returns
Type Description
System.Boolean
Overrides
Object.Equals(Object)
| Improve this Doc View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
Int32
Overrides
Object.GetHashCode()
| Improve this Doc View Source

GetObjectData(SerializationInfo, StreamingContext)

Declaration
public override void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
Type Name Description
SerializationInfo info
StreamingContext context
Overrides
Exception.GetObjectData(SerializationInfo, StreamingContext)

Operators

| Improve this Doc View Source

Equality(InvalidBlockTxHashException, InvalidBlockTxHashException)

Declaration
public static bool operator ==(InvalidBlockTxHashException left, InvalidBlockTxHashException right)
Parameters
Type Name Description
InvalidBlockTxHashException left
InvalidBlockTxHashException right
Returns
Type Description
System.Boolean
| Improve this Doc View Source

Inequality(InvalidBlockTxHashException, InvalidBlockTxHashException)

Declaration
public static bool operator !=(InvalidBlockTxHashException left, InvalidBlockTxHashException right)
Parameters
Type Name Description
InvalidBlockTxHashException left
InvalidBlockTxHashException right
Returns
Type Description
System.Boolean

Implements

System.Runtime.Serialization.ISerializable
System.IEquatable<T>
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2018–2023 Planetarium