Class InvalidTransferSignerException
[Serializable]
public class InvalidTransferSignerException : Exception, ISerializable
- Inheritance
-
InvalidTransferSignerException
- Implements
- Inherited Members
Constructors
InvalidTransferSignerException(Address, Address, Address)
public InvalidTransferSignerException(Address txSigner, Address sender, Address recipient)
Parameters
txSigner
Addresssender
Addressrecipient
Address
InvalidTransferSignerException(SerializationInfo, StreamingContext)
public InvalidTransferSignerException(SerializationInfo info, StreamingContext context)
Parameters
info
SerializationInfocontext
StreamingContext
Properties
Recipient
public Address Recipient { get; }
Property Value
- Address
Sender
public Address Sender { get; }
Property Value
- Address
TxSigner
public Address TxSigner { get; }
Property Value
- Address
Methods
GetObjectData(SerializationInfo, StreamingContext)
When overridden in a derived class, sets the SerializationInfo with information about the exception.
public override void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
info
SerializationInfoThe SerializationInfo that holds the serialized object data about the exception being thrown.
context
StreamingContextThe StreamingContext that contains contextual information about the source or destination.
Exceptions
- ArgumentNullException
The
info
parameter is a null reference (Nothing
in Visual Basic).