Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NfcBarcodeInterface.cs
1using Android.Nfc;
2using Android.Nfc.Tech;
4
6{
15 public class NfcBarcodeInterface(Tag Tag, NfcBarcode Technology)
16 : NfcInterface(Tag, Technology), INfcBarcodeInterface
17 {
18 private readonly NfcBarcode nfcBarcode = Technology;
19
23 public Task<byte[]> ReadAllData()
24 {
25 return Task.FromResult(this.nfcBarcode.GetBarcode() ?? throw UnableToReadDataFromDevice());
26 }
27 }
28}
NFC Barcode interface, for communication with an NFC Tag.