System.Xml.XmlNodeReader Methods

ReadAttribute()

Reads an attribute value from the current node.

nodeReader.ReadAttribute("attributeName");

ReadBoolean()

Reads a boolean value from the current node.

nodeReader.ReadBoolean();

ReadBytes()

Reads a sequence of bytes from the current node.

nodeReader.ReadBytes();

ReadChar()

Reads a single character from the current node.

nodeReader.ReadChar();

ReadDateTime()

Reads a DateTime value from the current node.

nodeReader.ReadDateTime();

ReadDecimal()

Reads a decimal value from the current node.

nodeReader.ReadDecimal();

ReadDouble()

Reads a double value from the current node.

nodeReader.ReadDouble();

ReadGuid()

Reads a GUID value from the current node.

nodeReader.ReadGuid();

ReadInt16()

Reads a short integer value from the current node.

nodeReader.ReadInt16();

ReadInt32()

Reads a 32-bit integer value from the current node.

nodeReader.ReadInt32();

ReadInt64()

Reads a 64-bit integer value from the current node.

nodeReader.ReadInt64();

ReadName()

Reads a name from the current node.

nodeReader.ReadName();

ReadString()

Reads a string value from the current node.

nodeReader.ReadString();

ReadUInt32()

Reads a unsigned 32-bit integer value from the current node.

nodeReader.ReadUInt32();

ReadUInt64()

Reads a unsigned 64-bit integer value from the current node.

nodeReader.ReadUInt64();