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

22 lines
733 B
C#

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