Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IIsoDepInterface.cs
1using System.Threading.Tasks;
2
3namespace NeuroAccess.Nfc
4{
8 public interface IIsoDepInterface : INfcInterface
9 {
13 Task<byte[]> GetHighLayerResponse();
14
18 Task<byte[]> GetHistoricalBytes();
19
25 Task<byte[]> ExecuteCommand(byte[] Command);
26 }
27}
ISO DEP interface, for communication with an NFC Tag.
Task< byte[]> GetHighLayerResponse()
Return the higher layer response bytes for NfcB tags.
Task< byte[]> ExecuteCommand(byte[] Command)
Executes an ISO 14443-4 command on the tag.
Task< byte[]> GetHistoricalBytes()
Return the ISO-DEP historical bytes for NfcA tags.
Specific Interface (technology) for communication with an NFC Tag.