summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Runtime/Serialization/IDeserializationCallback.cs
blob: 2b07ce9c381e812adbf3243ff8762db11503f9df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*============================================================
**
** Interface: IDeserializationEventListener
**
**
** Purpose: Implemented by any class that wants to indicate that
**          it wishes to receive deserialization events.
**
**
===========================================================*/

using System;

namespace System.Runtime.Serialization
{
    // Interface does not need to be marked with the serializable attribute    
    public interface IDeserializationCallback
    {
        void OnDeserialization(Object sender);
    }
}