Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

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