Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/WriteState.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

41 lines
1.7 KiB
C#

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