Wed Sep 11 15:26:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System / MarshalByRefObject.cs
index 367a4a441c2e7eecffa1e3e0fdca3c70bc944edd..d09394b1429010ba883035cf46ee59af91288114 100644 (file)
@@ -11,19 +11,20 @@ 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;
                }