15 public class NfcVInterface(Tag Tag, NfcV Technology)
18 private readonly NfcV nfcV = Technology;
23 public Task<sbyte> GetDsfId()
25 return Task.FromResult(this.nfcV.DsfId);
31 public Task<short> GetResponseFlags()
33 return Task.FromResult((
short)this.nfcV.ResponseFlags);
NFC V interface, for communication with an NFC Tag.