Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NfcVInterface.cs
1using Android.Nfc;
2using Android.Nfc.Tech;
4
6{
15 public class NfcVInterface(Tag Tag, NfcV Technology)
16 : NfcInterface(Tag, Technology), INfcVInterface
17 {
18 private readonly NfcV nfcV = Technology;
19
23 public Task<sbyte> GetDsfId()
24 {
25 return Task.FromResult(this.nfcV.DsfId);
26 }
27
31 public Task<short> GetResponseFlags()
32 {
33 return Task.FromResult((short)this.nfcV.ResponseFlags);
34 }
35 }
36}
NFC V interface, for communication with an NFC Tag.