14 lines
641 B
C#
14 lines
641 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Serialization
|
|
{
|
|
/// <summary>Represents the method that handles the <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownNode" /> event of an <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">An <see cref="T:System.Xml.Serialization.XmlNodeEventArgs" /> that contains the event data. </param>
|
|
// Token: 0x0200010C RID: 268
|
|
// (Invoke) Token: 0x06000C84 RID: 3204
|
|
[Token(Token = "0x200010C")]
|
|
public delegate void XmlNodeEventHandler(object sender, XmlNodeEventArgs e);
|
|
}
|