Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

19 lines
608 B
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.Serialization
{
/// <summary>Enables serialization of custom exception data in security-transparent code.</summary>
// Token: 0x0200046B RID: 1131
[Token(Token = "0x200046B")]
public interface ISafeSerializationData
{
/// <summary>This method is called when the instance is deserialized.</summary>
/// <param name="deserialized">An object that contains the state of the instance.</param>
// Token: 0x06002709 RID: 9993
[Token(Token = "0x6002709")]
[Address(Slot = "0")]
void CompleteDeserialization(object deserialized);
}
}