Marshal::GetComInterfaceForObject Method (Object, Type, CustomQueryInterfaceMode)
Returns a pointer to an IUnknown interface that represents the specified interface on the specified object. Custom query interface access is controlled by the specified customization mode.
Assembly: mscorlib (in mscorlib.dll)
public: static IntPtr GetComInterfaceForObject( Object^ o, Type^ T, CustomQueryInterfaceMode mode )
Parameters
- o
- Type: System::Object
The object that provides the interface.
- T
- Type: System::Type
The type of interface that is requested.
- mode
- Type: System.Runtime.InteropServices::CustomQueryInterfaceMode
One of the enumeration values that indicates whether to apply an IUnknown::QueryInterface customization that is supplied by an ICustomQueryInterface.
| Exception | Condition |
|---|---|
| ArgumentException | The T parameter is not an interface. -or- The type is not visible to COM. -or- The T parameter is a generic type. |
| InvalidCastException | The object o does not support the requested interface. |
| ArgumentNullException | The o parameter is nullptr. -or- The T parameter is nullptr. |
GetComInterfaceForObject(Object, Type, CustomQueryInterfaceMode) lets you specify whether to apply query interface customization. Use the GetComInterfaceForObject(Object, Type) overload to apply query interface customization by default.
- SecurityCriticalAttribute
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.