Merge pull request #3626 from lateralusX/jlorenss/win-api-family-support-eglib
[mono.git] / mcs / class / referencesource / mscorlib / system / contextboundobject.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6 /*============================================================
7 **
8 ** File:    ContextBoundObject.cs
9 **<EMAIL>
10 ** Author(s):   Tarun Anand    (TarunA)
11 **</EMAIL>              
12 **
13 ** Purpose: Defines the root type for all context bound types
14 **          
15 **
16 ===========================================================*/
17 namespace System {   
18     
19     using System;
20     using System.Security.Permissions;
21     [Serializable]
22     [System.Runtime.InteropServices.ComVisible(true)]
23 #if FEATURE_REMOTING || MONO
24     public abstract class ContextBoundObject : MarshalByRefObject {
25 #else // FEATURE_REMOTING
26     public abstract class ContextBoundObject {
27 #endif // FEATURE_REMOTING
28     }
29 }