DOMNodeReader.Read

Syntax:

Read()

Returned value:

Type: Boolean.
True - next node read; False - XML text completed.

Description:

Read next XML node. At the same time these properties DOMNodeReader.NodeType, DOMNodeReader.Name, DOMNodeReader.LocalName, DOMNodeReader.Prefix, DOMNodeReader.NamespaceURI, DOMNodeReader.Value get values that correspond to read data.

Availability:

Thin client, server, thick client, external connection, Mobile application (client), Mobile application (server).

Example:

Reader.OpenFile("c:/docs/data.xml");
While 
Reader.Read() Do
    // Processing the XML node
EndDo;


    

1C:Enterprise Developer's Community