Marshal.GetObjectForIUnknown(IntPtr) Method

Definition

Returns an instance of a type that represents a COM object by a pointer to its IUnknown interface.

public:
 static System::Object ^ GetObjectForIUnknown(IntPtr pUnk);
[System.Security.SecurityCritical]
public static object GetObjectForIUnknown (IntPtr pUnk);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static object GetObjectForIUnknown (IntPtr pUnk);
public static object GetObjectForIUnknown (IntPtr pUnk);
[<System.Security.SecurityCritical>]
static member GetObjectForIUnknown : nativeint -> obj
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
static member GetObjectForIUnknown : nativeint -> obj
static member GetObjectForIUnknown : nativeint -> obj
Public Shared Function GetObjectForIUnknown (pUnk As IntPtr) As Object

Parameters

pUnk
IntPtr

nativeint

A pointer to the IUnknown interface.

Returns

An object that represents the specified unmanaged COM object.

Attributes

Exceptions

Remarks

This method wraps IUnknown in a managed object. This has the effect of incrementing the reference count of the COM component. The reference count will be decremented when the runtime performs garbage collection on the managed object that represents the COM object.

The pUnk parameter represents an IUnknown interface pointer; however, because all COM interfaces derive directly or indirectly from IUnknown, you can pass any COM interface to this method. The object returned by GetObjectForIUnknown is a Runtime Callable Wrapper, which the common language runtime manages as it does any other managed object. The type of this wrapper is often a base System.__ComObject type, which is a hidden type used when the wrapper type is ambiguous. You can still make late-bound calls to such a base type as long as the COM object implements the IDispatch interface. Likewise, you can cast the returned object to an appropriate COM interface.

For an object to be wrapped with a specific managed class type (and not a generic wrapper type), you must adhere to the following requirements:

Alternatively, you can avoid these requirements and still get an object that is wrapped with a specific managed class type by using the Marshal.GetTypedObjectForIUnknown method.

Applies to

See also