Files
Aug2021-Cpp2IL-Dump/System.Xml/Schema/ValidationEventHandler.cs
T
2026-04-10 22:50:51 +02:00

15 lines
790 B
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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);
}