System::Xml::WriteState enum
Contents
[
Hide
]WriteState enum
Specifies the state of the XmlWriter.
enum class WriteState
Values
| Name | Value | Description | 
|---|---|---|
| Start | 0 | Indicates that the XmlWriter::Write method has not yet been called. | 
| Prolog | 1 | Indicates that the prolog is being written. | 
| Element | 2 | Indicates that an element start tag is being written. | 
| Attribute | 3 | Indicates that an attribute value is being written. | 
| Content | 4 | Indicates that element content is being written. | 
| Closed | 5 | Indicates that the XmlWriter::Close method has been called. | 
| Error | 6 | An exception has been thrown, which has left the XmlWriter in an invalid state. You can call the XmlWriter::Close method to put the XmlWriter in the WriteState::Closed state. Any other XmlWriter method calls results in an InvalidOperationException. | 
See Also
- Namespace System::Xml
- Library Aspose.Font for C++