Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x0200047A RID: 1146
[Token(Token = "0x200047A")]
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: 0x0600276A RID: 10090 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600276A")]
[Address(RVA = "0x267CFF0", Offset = "0x267BFF0", VA = "0x18267CFF0")]
public SerializationObjectManager(StreamingContext context)
{
}
/// <summary>Registers the object upon which events will be raised.</summary>
/// <param name="obj">The object to register.</param>
// Token: 0x0600276B RID: 10091 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600276B")]
[Address(RVA = "0x267CE50", Offset = "0x267BE50", VA = "0x18267CE50")]
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: 0x0600276C RID: 10092 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600276C")]
[Address(RVA = "0x267CE20", Offset = "0x267BE20", VA = "0x18267CE20")]
public void RaiseOnSerializedEvent()
{
}
// Token: 0x0600276D RID: 10093 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600276D")]
[Address(RVA = "0x267CD80", Offset = "0x267BD80", VA = "0x18267CD80")]
private void AddOnSerialized(object obj)
{
}
// Token: 0x040015AD RID: 5549
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40015AD")]
private Hashtable m_objectSeenTable;
// Token: 0x040015AE RID: 5550
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40015AE")]
private SerializationEventHandler m_onSerializedHandler;
// Token: 0x040015AF RID: 5551
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x40015AF")]
private StreamingContext m_context;
}
}