ObjectHandle Class
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ComVisibleAttribute(True)> _ <ClassInterfaceAttribute(ClassInterfaceType.AutoDual)> _ Public Class ObjectHandle Inherits MarshalByRefObject Implements IObjectHandle 'Usage Dim instance As ObjectHandle
/** @attribute ComVisibleAttribute(true) */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDual) */ public class ObjectHandle extends MarshalByRefObject implements IObjectHandle
ComVisibleAttribute(true) ClassInterfaceAttribute(ClassInterfaceType.AutoDual) public class ObjectHandle extends MarshalByRefObject implements IObjectHandle
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".
Imports System Imports System.Runtime.Remoting Public Class MyType Inherits MarshalByRefObject Public Sub New() Console.Write("Created an instance of MyType in an AppDomain with the ") Console.WriteLine("hashcode {0}", AppDomain.CurrentDomain.GetHashCode()) Console.WriteLine("") End Sub 'New Public Function GetAppDomainHashCode() As Integer Return AppDomain.CurrentDomain.GetHashCode() End Function 'GetAppDomainHashCode End Class 'MyType Class Test Public Shared Sub Main() Console.WriteLine("The hash code of the default AppDomain is {0}.", AppDomain.CurrentDomain.GetHashCode()) Console.WriteLine("") ' Creates another AppDomain. Dim domain As AppDomain = AppDomain.CreateDomain("AnotherDomain", Nothing, CType(Nothing, AppDomainSetup)) ' Creates an instance of MyType defined in the assembly called ObjectHandleAssembly. Dim obj As ObjectHandle = domain.CreateInstance("ObjectHandleAssembly", "MyType") ' Unwrapps the proxy to the MyType object created in the other AppDomain. Dim testObj As MyType = CType(obj.Unwrap(), MyType) If RemotingServices.IsTransparentProxy(testObj) Then Console.WriteLine("The unwrapped object is a proxy.") Else Console.WriteLine("The unwrapped object is not a proxy!") End If Console.WriteLine("") Console.Write("Calling a method on the object located in an AppDomain with the hash code ") Console.WriteLine(testObj.GetAppDomainHashCode()) End Sub 'Main End Class 'Test
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.