Show / Hide Table of Contents

    Class SignedBid

    A serializable raw signed bid class.

    Inheritance
    System.Object
    SignedBid
    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Algorand
    Assembly: Algorand.dll
    Syntax
    [JsonObject]
    public class SignedBid

    Constructors

    | Improve this Doc View Source

    SignedBid()

    Declaration
    public SignedBid()
    | Improve this Doc View Source

    SignedBid(Bid, MultisigSignature)

    Declaration
    public SignedBid(Bid bid, MultisigSignature mSig)
    Parameters
    Type Name Description
    Bid bid
    MultisigSignature mSig
    | Improve this Doc View Source

    SignedBid(Bid, Signature)

    Declaration
    public SignedBid(Bid bid, Signature sig)
    Parameters
    Type Name Description
    Bid bid
    Signature sig
    | Improve this Doc View Source

    SignedBid(Bid, Signature, MultisigSignature)

    Declaration
    public SignedBid(Bid bid, Signature sig, MultisigSignature mSig)
    Parameters
    Type Name Description
    Bid bid
    Signature sig
    MultisigSignature mSig
    | Improve this Doc View Source

    SignedBid(Bid, Byte[], MultisigSignature)

    Declaration
    [JsonConstructor]
    public SignedBid([JsonProperty(PropertyName = "bid")] Bid bid, [JsonProperty(PropertyName = "sig")] byte[] sig, [JsonProperty(PropertyName = "msig")] MultisigSignature mSig)
    Parameters
    Type Name Description
    Bid bid
    System.Byte[] sig
    MultisigSignature mSig

    Fields

    | Improve this Doc View Source

    bid

    Declaration
    [JsonProperty(PropertyName = "bid")]
    public Bid bid
    Field Value
    Type Description
    Bid
    | Improve this Doc View Source

    mSig

    Declaration
    [JsonProperty(PropertyName = "msig")]
    public MultisigSignature mSig
    Field Value
    Type Description
    MultisigSignature
    | Improve this Doc View Source

    sig

    Declaration
    [JsonProperty(PropertyName = "sig")]
    public Signature sig
    Field Value
    Type Description
    Signature

    Methods

    | Improve this Doc View Source

    Equals(Object)

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

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.Object.GetHashCode()
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX