using System; using Cpp2IlInjected; namespace System.Xml.Schema { /// Represents the callback method that will handle XML schema validation events and the . /// 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. /// The event data. // Token: 0x02000105 RID: 261 // (Invoke) Token: 0x0600082C RID: 2092 [Token(Token = "0x2000105")] public delegate void ValidationEventHandler(object sender, ValidationEventArgs e); }