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,24 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Specifies the type of node change.</summary>
// Token: 0x020000B3 RID: 179
[Token(Token = "0x20000B3")]
public enum XmlNodeChangedAction
{
/// <summary>A node is being inserted in the tree.</summary>
// Token: 0x04000521 RID: 1313
[Token(Token = "0x4000521")]
Insert,
/// <summary>A node is being removed from the tree.</summary>
// Token: 0x04000522 RID: 1314
[Token(Token = "0x4000522")]
Remove,
/// <summary>A node value is being changed.</summary>
// Token: 0x04000523 RID: 1315
[Token(Token = "0x4000523")]
Change
}
}