Show / Hide Table of Contents

    Class RxHciMessage

    HCI Message received from IU880B Modem.

    Inheritance
    System.Object
    HciMessage
    RxHciMessage
    DeviceRxHciMessage
    LoRaWanRxHciMessage
    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.Rx
    Assembly: IU880B.dll
    Syntax
    public abstract class RxHciMessage : HciMessage

    Constructors

    | Improve this Doc View Source

    RxHciMessage(EndpointIdentifier, IList<Byte>)

    Initializes a new instance of the RxHciMessage class.

    Declaration
    protected RxHciMessage(EndpointIdentifier endpointIdentifier, IList<byte> payload)
    Parameters
    Type Name Description
    EndpointIdentifier endpointIdentifier

    the identifier of the endpoint.

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

    the payload.

    Properties

    | Improve this Doc View Source

    EndpointIdentifier

    Gets the identifier of the endpoint this message was 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 or sets the payload of the response.

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