using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies whether to remove duplicate namespace declarations in the .
// Token: 0x0200004B RID: 75
[Token(Token = "0x200004B")]
[Flags]
public enum NamespaceHandling
{
/// Specifies that duplicate namespace declarations will not be removed.
// Token: 0x040001B8 RID: 440
[Token(Token = "0x40001B8")]
Default = 0,
/// Specifies that duplicate namespace declarations will be removed. For the duplicate namespace to be removed, the prefix and the namespace must match.
// Token: 0x040001B9 RID: 441
[Token(Token = "0x40001B9")]
OmitDuplicates = 1
}
}