15 public class NfcBarcodeInterface(Tag Tag, NfcBarcode Technology)
18 private readonly NfcBarcode nfcBarcode = Technology;
23 public Task<byte[]> ReadAllData()
25 return Task.FromResult(this.nfcBarcode.GetBarcode() ??
throw UnableToReadDataFromDevice());
NFC Barcode interface, for communication with an NFC Tag.