12 public class NfcBInterface(Tag Tag, NfcB Technology)
15 private readonly NfcB nfcB = Technology;
20 public Task<byte[]> GetApplicationData()
22 return Task.FromResult(this.nfcB.GetApplicationData() ??
throw UnableToReadDataFromDevice());
28 public Task<byte[]> GetProtocolInfo()
30 return Task.FromResult(this.nfcB.GetProtocolInfo() ??
throw UnableToReadDataFromDevice());
NFC B interface, for communication with an NFC Tag.