This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,14 @@
using System;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>Represents the callback method that will handle XML schema validation events and the <see cref="T:System.Xml.Schema.ValidationEventArgs" />.</summary>
/// <param name="sender">The source of the event.
/// Note    Determine the type of a sender before using it in your code. You cannot assume that the sender is an instance of a particular type. The sender is also not guaranteed to not be null. Always surround your casts with failure handling logic.</param>
/// <param name="e">The event data. </param>
// Token: 0x02000105 RID: 261
// (Invoke) Token: 0x0600082C RID: 2092
[Token(Token = "0x2000105")]
public delegate void ValidationEventHandler(object sender, ValidationEventArgs e);
}