This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,21 @@
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
}
}