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