This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,13 @@
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 types that map to collections or enumerations. </summary>
/// <param name="collection">The collection into which the collection items array is copied.</param>
/// <param name="collectionItems">An array of items to be copied into the <paramref name="object collection" />.</param>
// Token: 0x02000136 RID: 310
// (Invoke) Token: 0x06000D65 RID: 3429
[Token(Token = "0x2000136")]
public delegate void XmlSerializationCollectionFixupCallback(object collection, object collectionItems);
}