Table of Contents

Class NDEFMessage

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll
NOTE
Experimental
The NDEFMessage 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
Experimental
The NDEFMessage() constructor creates a new NDEFMessage object, initialized with the given NDEF records.
public NDEFMessage(NDEFMessageInit messageInit)

Parameters

messageInit NDEFMessageInit

Remarks

Properties

Records

NOTE
Experimental
The records property of
NDEFMessage 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.

Remarks