19 lines
608 B
C#
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: 0x0200044F RID: 1103
|
|
[Token(Token = "0x200044F")]
|
|
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: 0x060024FD RID: 9469
|
|
[Token(Token = "0x60024FD")]
|
|
[Address(Slot = "0")]
|
|
void CompleteDeserialization(object deserialized);
|
|
}
|
|
}
|