XMLReader.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 XMLReader.NodeType, XMLReader.Name, XMLReader.LocalName, XMLReader.Prefix, XMLReader.NamespaceURI, XMLReader.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