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