Open bptf opened 9 months ago
I was thinking NFCNdefTypeFormat.Mime
but I am not sure. In NFC Tools app, the field has Content-type: text/vCard
.
So something like this?
new NFCNdefRecord
{
TypeFormat = NFCNdefTypeFormat.Mime,
MimeType = "Content-type: text/vCard",
Payload = NFCUtils.EncodeToByteArray(data)
}
Or do I need to use NFCNdefTypeFormat.WellKnown
, and if so how do I assign the Content-type?
Which NFCNdefTypeFormat can be used to write VCARD data to an NFC card?
Ex data:
Thanks!