Marshal.GetIDispatchForObjectInContext(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an IDispatch interface pointer from a managed object, if the caller is in the same context as that object.
public:
static IntPtr GetIDispatchForObjectInContext(System::Object ^ o);
public static IntPtr GetIDispatchForObjectInContext (object o);
[System.Security.SecurityCritical]
public static IntPtr GetIDispatchForObjectInContext (object o);
static member GetIDispatchForObjectInContext : obj -> nativeint
[<System.Security.SecurityCritical>]
static member GetIDispatchForObjectInContext : obj -> nativeint
Public Shared Function GetIDispatchForObjectInContext (o As Object) As IntPtr
Parameters
- o
- Object
The object whose IDispatch
interface is requested.
Returns
nativeint
The IDispatch
interface pointer for the specified object, or null
if the caller is not in the same context as the specified object.
- Attributes
Exceptions
o
does not support the requested interface.
o
is null
.
Remarks
This method is the same as GetIDispatchForObject except that it returns null
if the caller is not in the same context as the object.