This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,18 @@
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);
}
}