Wed Sep 11 15:26:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System / MarshalByRefObject.cs
index 291fba821a3b663a8eb38bab1bb4886ff5fa2871..d09394b1429010ba883035cf46ee59af91288114 100644 (file)
@@ -7,23 +7,30 @@
 // (C) Ximian, Inc.  http://www.ximian.com
 //
 
+using System.Runtime.Remoting;
+
 namespace System {
 
+       [Serializable]
        public abstract class MarshalByRefObject {
 
                public virtual ObjRef CreateObjRef (Type type)
                {
-                       return null;
+                       throw new NotImplementedException ();
                }
 
-               public object GetLifeTimeService ()
+               public object GetLifetimeService ()
                {
                        return null;
                }
 
-               public virtual object InitializeLifeTimeService ()
+               public virtual object InitializeLifetimeService ()
                {
                        return null;
                }
+
+               protected MarshalByRefObject ()
+               {
+               }
        }
 }