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
|
namespace System.Runtime.Remoting
{
public sealed class ObjectHandle : MarshalByRefObject
{
#region Keep this code, it is used by the runtime
#pragma warning disable 169, 649
private object _wrapped;
#pragma warning restore 169, 649
#endregion
public ObjectHandle (object o)
{
throw new PlatformNotSupportedException ();
}
public override object InitializeLifetimeService ()
{
throw new PlatformNotSupportedException ();
}
public object Unwrap ()
{
throw new PlatformNotSupportedException ();
}
}
}
|