Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
UriRecord.cs
1using Android.Nfc;
3
5{
10 public class UriRecord(NdefRecord Record)
11 : Record(Record), INdefUriRecord
12 {
13 private readonly string uri = Record.ToUri()?.ToString() ?? throw NfcInterface.UnableToReadDataFromDevice();
14
18 public override NDefRecordType Type => NDefRecordType.Uri;
19
23 public string Uri => this.uri;
24 }
25}
Interface for NDEF URI records
NDefRecordType
Type of NDEF Record