12 public class NfcAInterface(Tag Tag, NfcA Technology)
15 private readonly NfcA nfcA = Technology;
20 public Task<byte[]> GetAtqa()
22 return Task.FromResult(this.nfcA.GetAtqa() ??
throw UnableToReadDataFromDevice());
28 public Task<short> GetSqk()
30 return Task.FromResult(this.nfcA.Sak);
NFC A interface, for communication with an NFC Tag.