Show / Hide Table of Contents

    Class TxHciMessage

    HCI Message for transmission to IU880B Modem.

    Inheritance
    System.Object
    HciMessage
    TxHciMessage
    DeviceTxMessage
    LoRaWanTxMessage
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: FosterBuster.IU880B.Messaging.Tx
    Assembly: IU880B.dll
    Syntax
    public abstract class TxHciMessage : HciMessage

    Constructors

    | Improve this Doc View Source

    TxHciMessage(EndpointIdentifier, List<Byte>)

    Initializes a new instance of the TxHciMessage class.

    Declaration
    protected TxHciMessage(EndpointIdentifier identifier, List<byte> payload)
    Parameters
    Type Name Description
    EndpointIdentifier identifier

    Identifier for destination endpoint.

    System.Collections.Generic.List<System.Byte> payload

    payload to be sent.

    Properties

    | Improve this Doc View Source

    EndpointIdentifier

    Gets the identifier of the endpoint this message should be sent to.

    Declaration
    public EndpointIdentifier EndpointIdentifier { get; }
    Property Value
    Type Description
    EndpointIdentifier
    | Improve this Doc View Source

    MessageIdentifier

    Gets the message identifier.

    Declaration
    public abstract byte MessageIdentifier { get; }
    Property Value
    Type Description
    System.Byte
    | Improve this Doc View Source

    Payload

    Gets the payload of this message.

    Declaration
    public List<byte> Payload { get; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.Byte>
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX