using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Serialization
{
/// Indicates that a class is to be notified when deserialization of the entire object graph has been completed.
// Token: 0x0200047B RID: 1147
[ComVisible(true)]
public interface IDeserializationCallback
{
/// Runs when the entire object graph has been deserialized.
/// The object that initiated the callback. The functionality for this parameter is not currently implemented.
// Token: 0x06002BE1 RID: 11233
void OnDeserialization(object sender);
}
}