Struct Message
Concrete IMessage: a Transaction plus the Signatory that signed it.
public readonly record struct Message : IMessage, IEquatable<IMessage>, IEquatable<Message>
- Implements
- Inherited Members
Constructors
Message(Transaction, Signatory)
Concrete IMessage: a Transaction plus the Signatory that signed it.
public Message(Transaction Transaction, Signatory Sender)
Parameters
TransactionTransactionThe transaction being signed.
SenderSignatoryThe signing party.
Properties
Sender
The signing party.
public Signatory Sender { get; init; }
Property Value
Transaction
The transaction being signed.
public Transaction Transaction { get; init; }
Property Value
Methods
Equals(IMessage?)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(IMessage? other)
Parameters
otherIMessageAn object to compare with this object.