Mono Class Library: System.Xml Namespace

System.Xml.ReadState Enumeration

Specifies the read state of an instance of a class derived from the System.Xml.XmlReader class. [Edit]
public enum ReadState

Remarks

When a reader is instantiated, the read state is set to Initial. When the XmlReader.Read method is called, the read state is changed to Interactive. If an error occurs during a read operation, the read state is changed to Error. When the end of the XML data is reached, the read state is set to EndOfFile. When the XmlReader.Close method is called, the read state is set to Closed. [Edit]

Members

Member NameDescription
ClosedThe XmlReader.Close method has been called. [Edit]
EndOfFile The end of the XML data has been reached. [Edit]
Error An error occurred that prevents the read operation from continuing. [Edit]
InitialThe XmlReader.Read method has not been called. [Edit]
InteractiveThe XmlReader.Read method has been called. Additional methods can now be called on the reader. [Edit]

Requirements

Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0