We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Which NFCNdefTypeFormat can be used to write VCARD data to an NFC card?
Ex data:
BEGIN:VCARD VERSION:3.0 FN;CHARSET=UTF-8:Name ... CATEGORIES:BUSINESS,WORK REV:2022-05-31T20:08:12.016Z END:VCARD
Thanks!
The text was updated successfully, but these errors were encountered:
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?
NFCNdefTypeFormat.Mime
Content-type: text/vCard
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?
NFCNdefTypeFormat.WellKnown
Sorry, something went wrong.
No branches or pull requests
Which NFCNdefTypeFormat can be used to write VCARD data to an NFC card?
Ex data:
Thanks!
The text was updated successfully, but these errors were encountered: