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;
3
5{
9 public interface IIsoDepInterface : INfcInterface
10 {
14 Task<byte[]> GetHighLayerResponse();
15
19 Task<byte[]> GetHistoricalBytes();
20
25 void SetTimeout(int Timeout);
26
34 }
35}
Simple base class for classes implementing communication protocols.
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, ICommunicationLayer CommunicationLayer)
Executes an ISO 14443-4 command on the tag.
void SetTimeout(int Timeout)
Sets communication timeout.
Task< byte[]> GetHistoricalBytes()
Return the ISO-DEP historical bytes for NfcA tags.
Specific Interface (technology) for communication with an NFC Tag.
Interface for observable classes implementing communication protocols.