ReadState

ReadState enum

Specifies the state of the reader.

enum class ReadState

Values

NameValueDescription
Initial0The XmlReader::Read method has not been called.
Interactive1The XmlReader::Read method has been called. Additional methods may be called on the reader.
Error2An error occurred that prevents the read operation from continuing.
EndOfFile3The end of the file has been reached successfully.
Closed4The XmlReader::Close method has been called.

See Also