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: 0x020001FA RID: 506 // (Invoke) Token: 0x06001403 RID: 5123 [Token(Token = "0x20001FA")] public delegate void ValidationEventHandler(object sender, ValidationEventArgs e); }