using System; using System.Collections; using Cpp2IlInjected; namespace System.Runtime.Serialization { /// Manages serialization processes at run time. This class cannot be inherited. // Token: 0x0200045E RID: 1118 [Token(Token = "0x200045E")] public sealed class SerializationObjectManager { /// Initializes a new instance of the class. /// An instance of the class that contains information about the current serialization operation. // Token: 0x0600255E RID: 9566 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600255E")] [Address(RVA = "0x29A0570", Offset = "0x299F370", VA = "0x1829A0570")] public SerializationObjectManager(StreamingContext context) { } /// Registers the object upon which events will be raised. /// The object to register. // Token: 0x0600255F RID: 9567 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600255F")] [Address(RVA = "0x29A03D0", Offset = "0x299F1D0", VA = "0x1829A03D0")] public void RegisterObject(object obj) { } /// Invokes the OnSerializing callback event if the type of the object has one; and registers the object for raising the OnSerialized event if the type of the object has one. // Token: 0x06002560 RID: 9568 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002560")] [Address(RVA = "0x29A03A0", Offset = "0x299F1A0", VA = "0x1829A03A0")] public void RaiseOnSerializedEvent() { } // Token: 0x06002561 RID: 9569 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002561")] [Address(RVA = "0x29A0300", Offset = "0x299F100", VA = "0x1829A0300")] private void AddOnSerialized(object obj) { } // Token: 0x040014EA RID: 5354 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40014EA")] private Hashtable m_objectSeenTable; // Token: 0x040014EB RID: 5355 [FieldOffset(Offset = "0x18")] [Token(Token = "0x40014EB")] private SerializationEventHandler m_onSerializedHandler; // Token: 0x040014EC RID: 5356 [FieldOffset(Offset = "0x20")] [Token(Token = "0x40014EC")] private StreamingContext m_context; } }