ObjectHandle Class
Wraps marshal-by-value object references, allowing them to be returned through an indirection.
Namespace: System.Runtime.Remoting
Assembly: mscorlib (in mscorlib.dll)
The ObjectHandle type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ObjectHandle | Initializes an instance of the ObjectHandle class, wrapping the given object o. |
| Name | Description | |
|---|---|---|
![]() | CreateObjRef | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.) |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetLifetimeService | Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | InitializeLifetimeService | Initializes the lifetime lease of the wrapped object. (Overrides MarshalByRefObject.InitializeLifetimeService().) |
![]() | MemberwiseClone() | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | MemberwiseClone(Boolean) | Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | Unwrap | Returns the wrapped object. |
The ObjectHandle class is used to pass an object (in a wrapped state) between multiple application domains without loading the metadata for the wrapped object in each AppDomain through which the ObjectHandle travels. Thus, the ObjectHandle class gives the caller control of when the Type of the remote object is loaded into a domain.
The following code example shows how to create an object in another AppDomain, and retrieve a proxy to the object from a ObjectHandle. In this example, you can assume that the code of the MyType class is compiled into an assembly called "ObjectHandleAssembly".
using System; using System.Runtime.Remoting; public class MyType : MarshalByRefObject { public MyType() { Console.Write("Created an instance of MyType in an AppDomain with the "); Console.WriteLine("hash code {0}",AppDomain.CurrentDomain.GetHashCode()); Console.WriteLine(""); } public int GetAppDomainHashCode() { return AppDomain.CurrentDomain.GetHashCode(); } } class Test { public static void Main() { Console.WriteLine("The hash code of the default AppDomain is {0}.", AppDomain.CurrentDomain.GetHashCode()); Console.WriteLine(""); // Creates another AppDomain. AppDomain domain = AppDomain.CreateDomain("AnotherDomain", null, (AppDomainSetup)null); // Creates an instance of MyType defined in the assembly called ObjectHandleAssembly. ObjectHandle obj = domain.CreateInstance("ObjectHandleAssembly", "MyType"); // Unwrapps the proxy to the MyType object created in the other AppDomain. MyType testObj = (MyType)obj.Unwrap(); if(RemotingServices.IsTransparentProxy(testObj)) Console.WriteLine("The unwrapped object is a proxy."); else Console.WriteLine("The unwrapped object is not a proxy!"); Console.WriteLine(""); Console.Write("Calling a method on the object located in an AppDomain with the hash code "); Console.WriteLine(testObj.GetAppDomainHashCode()); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

