summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/IAppDomain.cs
blob: cdb83166c8c8e48c7b41660c300587a002fc3f62 (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
26
27
28
// 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:  IAppDomain
** 
** 
**
**
** Purpose: Properties and methods exposed to COM
**
** 
===========================================================*/
namespace System
{
    using System.Runtime.InteropServices;

    [GuidAttribute("05F696DC-2B29-3663-AD8B-C4389CF2A713")]
    [InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
    [CLSCompliant(false)]
    [System.Runtime.InteropServices.ComVisible(true)]
    public interface _AppDomain
    {
    }
}