Class LorawanJoinRequest
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
DevEuibyte[]The device identifier, most-significant byte first.
AppEuibyte[]The application identifier, most-significant byte first.
DevNonceushortThe 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; }