29 lines
880 B
C#
29 lines
880 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>Indicates if attributes or elements need to be qualified with a namespace prefix.</summary>
|
|
// Token: 0x02000238 RID: 568
|
|
[Token(Token = "0x2000238")]
|
|
public enum XmlSchemaForm
|
|
{
|
|
/// <summary>Element and attribute form is not specified in the schema.</summary>
|
|
// Token: 0x04000C27 RID: 3111
|
|
[Token(Token = "0x4000C27")]
|
|
[XmlIgnore]
|
|
None,
|
|
/// <summary>Elements and attributes must be qualified with a namespace prefix.</summary>
|
|
// Token: 0x04000C28 RID: 3112
|
|
[Token(Token = "0x4000C28")]
|
|
[XmlEnum("qualified")]
|
|
Qualified,
|
|
/// <summary>Elements and attributes are not required to be qualified with a namespace prefix.</summary>
|
|
// Token: 0x04000C29 RID: 3113
|
|
[Token(Token = "0x4000C29")]
|
|
[XmlEnum("unqualified")]
|
|
Unqualified
|
|
}
|
|
}
|