summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Diagnostics/ICustomDebuggerNotification.cs
blob: e7f41051f20e88ff8209061d9c83970de3089e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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.

/*============================================================
**
**
** This interface is implemented by classes that support custom debugger notifications.
**
===========================================================*/

using System;

namespace System.Diagnostics
{
    // Defines an interface indicating that a custom debugger notification is requested under specific 
    // conditions. Users should implement this interface to be used as an argument to 
    // System.Diagnostics.Debugger.CustomNotification.  
    internal interface ICustomDebuggerNotification
    {
        // Interface does not need to be marked with the serializable attribute
    }
}