Class NDEFMessage
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
NOTE
ExperimentalNDEFMessage interface of the Web NFC API represents the content of an NDEF message that has been read from or could be written to an NFC tag. An instance is acquired by calling the NDEFMessage() constructor or from the Message property, which is passed to the NDEFReader.Reading event.
[Value("NDEFMessage")]
public class NDEFMessage
- Inheritance
-
NDEFMessage
- Inherited Members
Remarks
Constructors
NDEFMessage()
public NDEFMessage()
NDEFMessage(NDEFMessageInit)
NOTE
ExperimentalNDEFMessage() constructor creates a new NDEFMessage object, initialized with the given NDEF records.
public NDEFMessage(NDEFMessageInit messageInit)
Parameters
messageInitNDEFMessageInit
Remarks
Properties
Records
NOTE
Experimentalrecords property ofNDEFMessage interface represents a list of NDEFRecords
present in the NDEF message.
[Value("records")]
public NDEFRecord[] Records { get; }
Property Value
- NDEFRecord[]
A list of NDEFRecord object that represent data recorded in the message.