Table of Contents

Class LorawanJoinRequest

Namespace
Pamoja.Lorawan
Assembly
Pamoja.Lorawan.dll

A join-request a device broadcast, with its integrity already verified.

public sealed record LorawanJoinRequest : IEquatable<LorawanJoinRequest>
Inheritance
LorawanJoinRequest
Implements
Inherited Members

Constructors

LorawanJoinRequest(byte[], byte[], ushort)

A join-request a device broadcast, with its integrity already verified.

public LorawanJoinRequest(byte[] DevEui, byte[] AppEui, ushort DevNonce)

Parameters

DevEui byte[]

The device identifier, most-significant byte first.

AppEui byte[]

The application identifier, most-significant byte first.

DevNonce ushort

The nonce, which a network must not accept twice.

Properties

AppEui

The application identifier, most-significant byte first.

public byte[] AppEui { get; init; }

Property Value

byte[]

DevEui

The device identifier, most-significant byte first.

public byte[] DevEui { get; init; }

Property Value

byte[]

DevNonce

The nonce, which a network must not accept twice.

public ushort DevNonce { get; init; }

Property Value

ushort