14 lines
711 B
C#
14 lines
711 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 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);
|
|
}
|