using System; using System.Collections; using Cpp2IlInjected; namespace System.Xml.Serialization { /// Creates typed versions of the for more efficient serialization. // Token: 0x02000149 RID: 329 [Token(Token = "0x2000149")] public class XmlSerializerFactory { /// Initializes a new instance of the class. // Token: 0x06000E44 RID: 3652 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000E44")] [Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")] public XmlSerializerFactory() { } /// Returns a derivation of the class that is used to serialize the specified type. /// The to serialize. /// A derivation of the class that is specifically created to serialize the specified type. // Token: 0x06000E45 RID: 3653 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E45")] [Address(RVA = "0x68E2B0", Offset = "0x68D2B0", VA = "0x18068E2B0")] public XmlSerializer CreateSerializer(Type type) { return null; } /// Returns a derivation of the class that can serialize objects of the specified type into XML documents, and vice versa. Specifies the object that represents the XML root element. /// The to serialize. /// An that represents the XML root element. /// A derivation of the . // Token: 0x06000E46 RID: 3654 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E46")] [Address(RVA = "0x68E2E0", Offset = "0x68D2E0", VA = "0x18068E2E0")] public XmlSerializer CreateSerializer(Type type, XmlRootAttribute root) { return null; } /// Returns a derivation of the class that can serialize objects of the specified type into XML document instances, and vice versa. Each object to be serialized can itself contain instances of classes, which this overload can override with other classes. This overload also specifies the default namespace for all the XML elements, and the class to use as the XML root element. /// The to serialize. /// An that contains fields that override the default serialization behavior. /// A array of additional object types to serialize. /// An that represents the XML root element. /// The default namespace of all XML elements in the XML document. /// A derivation of the . // Token: 0x06000E47 RID: 3655 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E47")] [Address(RVA = "0x68E310", Offset = "0x68D310", VA = "0x18068E310")] public XmlSerializer CreateSerializer(Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace) { return null; } // Token: 0x0400075A RID: 1882 [Token(Token = "0x400075A")] private static Hashtable serializersBySource; } }