14 lines
653 B
C#
14 lines
653 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Serialization
|
|
{
|
|
/// <summary>Represents the method that handles the <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownElement" /> event of an <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">A <see cref="T:System.Xml.Serialization.XmlElementEventArgs" /> that contains the event data. </param>
|
|
// Token: 0x0200010A RID: 266
|
|
// (Invoke) Token: 0x06000C7F RID: 3199
|
|
[Token(Token = "0x200010A")]
|
|
public delegate void XmlElementEventHandler(object sender, XmlElementEventArgs e);
|
|
}
|