Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Runtime.Remoting/ObjRef.cs')
-rw-r--r--mcs/class/corlib/System.Runtime.Remoting/ObjRef.cs72
1 files changed, 0 insertions, 72 deletions
diff --git a/mcs/class/corlib/System.Runtime.Remoting/ObjRef.cs b/mcs/class/corlib/System.Runtime.Remoting/ObjRef.cs
deleted file mode 100644
index 6f564878969..00000000000
--- a/mcs/class/corlib/System.Runtime.Remoting/ObjRef.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-//
-// System.Runtime.Remoting.ObjRef.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-//
-// FIXME: This is just a skeleton for practical purposes.
-//
-
-using System;
-using System.Runtime.Serialization;
-
-namespace System.Runtime.Remoting {
-
- [Serializable]
- public class ObjRef : IObjectReference, ISerializable {
- MarshalByRefObject mbr;
- SerializationInfo si;
- Type type;
-
- public ObjRef ()
- {
- }
-
- public ObjRef (MarshalByRefObject mbr, Type type)
- {
- this.mbr = mbr;
- this.type = type;
- }
-
- [MonoTODO]
- protected ObjRef (SerializationInfo si, StreamingContext sc)
- {
- // FIXME: Implement.
- //
- // This encarnates the object from serialized data.
- }
-
- [MonoTODO]
- public virtual void GetObjectData (SerializationInfo si, StreamingContext sc)
- {
- // FIXME:
- }
-
- [MonoTODO]
- public virtual object GetRealObject (StreamingContext sc)
- {
- // FIXME:
-
- return null;
- }
-
- [MonoTODO]
- public bool IsFromThisAppDomain ()
- {
- // FIXME:
-
- return true;
- }
-
- [MonoTODO]
- public bool IsFromThisProcess ()
- {
- // FIXME:
-
- return true;
- }
- }
-}