Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Serialization/SerializationObjectManager.cs
T
2026-04-10 22:50:51 +02:00

61 lines
2.3 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Runtime.Serialization
{
/// <summary>Manages serialization processes at run time. This class cannot be inherited.</summary>
// Token: 0x0200045E RID: 1118
[Token(Token = "0x200045E")]
public sealed class SerializationObjectManager
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationObjectManager" /> class.</summary>
/// <param name="context">An instance of the <see cref="T:System.Runtime.Serialization.StreamingContext" /> class that contains information about the current serialization operation.</param>
// Token: 0x0600255E RID: 9566 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600255E")]
[Address(RVA = "0x29A0570", Offset = "0x299F370", VA = "0x1829A0570")]
public SerializationObjectManager(StreamingContext context)
{
}
/// <summary>Registers the object upon which events will be raised.</summary>
/// <param name="obj">The object to register.</param>
// Token: 0x0600255F RID: 9567 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600255F")]
[Address(RVA = "0x29A03D0", Offset = "0x299F1D0", VA = "0x1829A03D0")]
public void RegisterObject(object obj)
{
}
/// <summary>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.</summary>
// 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;
}
}