more AppDomain updates
[mono.git] / mcs / class / corlib / System.Runtime.Remoting / ObjectHandle.cs
1 //
2 // System.Runtime.Remoting.ObjectHandle.cs
3 //
4 // Author:
5 //   Dietmar Maurer (dietmr@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9 //
10
11 using System;
12 using System.Runtime.Serialization;
13
14 namespace System.Runtime.Remoting {
15
16         public class ObjectHandle : MarshalByRefObject, IObjectReference {
17                 
18                 [MonoTODO]
19                 public ObjectHandle (object o)
20                 {
21                         throw new NotImplementedException ();
22                 }
23
24                 [MonoTODO]
25                 public override object InitializeLifeTimeService ()
26                 {
27                         throw new NotImplementedException ();
28                 }
29
30                 [MonoTODO]
31                 public object Unwrap ()
32                 {
33                         throw new NotImplementedException ();
34                 }
35
36                 public object GetRealObject (StreamingContext context)
37                 {
38                         throw new NotImplementedException ();
39                 }
40
41         }
42 }