Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
INdefInterface.cs
2using System.Threading.Tasks;
3
4namespace NeuroAccess.Nfc
5{
9 public interface INdefInterface : INfcInterface
10 {
14 Task<bool> CanMakeReadOnly();
15
19 Task<bool> IsWritable();
20
24 Task<INdefRecord[]> GetMessage();
25
31 Task<bool> SetMessage(params object[] Items);
32 }
33}
NDEF interface, for communication with an NFC Tag.
Task< bool > IsWritable()
If the TAG is writable
Task< bool > SetMessage(params object[] Items)
Sets the message (with records) on the NDEF tag.
Task< bool > CanMakeReadOnly()
If the TAG can be made read-only
Task< INdefRecord[]> GetMessage()
Gets the message (with records) of the NDEF tag.
Specific Interface (technology) for communication with an NFC Tag.