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 29
|
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** File: ContextBoundObject.cs
**<EMAIL>
** Author(s): Tarun Anand (TarunA)
**</EMAIL>
**
** Purpose: Defines the root type for all context bound types
**
**
===========================================================*/
namespace System {
using System;
using System.Security.Permissions;
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
#if FEATURE_REMOTING || MONO
public abstract class ContextBoundObject : MarshalByRefObject {
#else // FEATURE_REMOTING
public abstract class ContextBoundObject {
#endif // FEATURE_REMOTING
}
}
|