12 public class NfcFInterface(Tag Tag, NfcF Technology)
15 private readonly NfcF nfcF = Technology;
20 public Task<byte[]> GetManufacturer()
22 return Task.FromResult(this.nfcF.GetManufacturer() ??
throw UnableToReadDataFromDevice());
28 public Task<byte[]> GetSystemCode()
30 return Task.FromResult(this.nfcF.GetSystemCode() ??
throw UnableToReadDataFromDevice());
NFC F interface, for communication with an NFC Tag.