Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/Serialization/XmlSerializationFixupCallback.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

13 lines
630 B
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Serialization
{
/// <summary>Delegate used by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class for deserialization of SOAP-encoded XML data. </summary>
/// <param name="fixup">An instance of the <see cref="T:System.Xml.Serialization.XmlSerializationReader.Fixup" /> class that contains the object to be fixed and the array of string identifiers for the items to fill in.</param>
// Token: 0x02000137 RID: 311
// (Invoke) Token: 0x06000D69 RID: 3433
[Token(Token = "0x2000137")]
public delegate void XmlSerializationFixupCallback(object fixup);
}