using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies the state of the .
// Token: 0x02000098 RID: 152
[Token(Token = "0x2000098")]
public enum WriteState
{
/// Indicates that a Write method has not yet been called.
// Token: 0x04000454 RID: 1108
[Token(Token = "0x4000454")]
Start,
/// Indicates that the prolog is being written.
// Token: 0x04000455 RID: 1109
[Token(Token = "0x4000455")]
Prolog,
/// Indicates that an element start tag is being written.
// Token: 0x04000456 RID: 1110
[Token(Token = "0x4000456")]
Element,
/// Indicates that an attribute value is being written.
// Token: 0x04000457 RID: 1111
[Token(Token = "0x4000457")]
Attribute,
/// Indicates that element content is being written.
// Token: 0x04000458 RID: 1112
[Token(Token = "0x4000458")]
Content,
/// Indicates that the method has been called.
// Token: 0x04000459 RID: 1113
[Token(Token = "0x4000459")]
Closed,
/// An exception has been thrown, which has left the in an invalid state. You can call the method to put the in the state. Any other method calls results in an .
// Token: 0x0400045A RID: 1114
[Token(Token = "0x400045A")]
Error
}
}