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,26 @@
using System;
using Cpp2IlInjected;
namespace System.Xml.Serialization
{
/// <summary>Defines the reader, writer, and methods for pre-generated, typed serializers.</summary>
// Token: 0x0200014A RID: 330
[Token(Token = "0x200014A")]
public abstract class XmlSerializerImplementation
{
/// <summary>Gets the XML writer object for the serializer.</summary>
/// <returns>An <see cref="T:System.Xml.Serialization.XmlSerializationWriter" /> that is used to write to an XML data stream or document.</returns>
// Token: 0x170003AE RID: 942
// (get) Token: 0x06000E49 RID: 3657 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170003AE")]
public virtual XmlSerializationWriter Writer
{
[Token(Token = "0x6000E49")]
[Address(RVA = "0x68E7C0", Offset = "0x68D7C0", VA = "0x18068E7C0", Slot = "4")]
get
{
return null;
}
}
}
}