IMultiQI
The IMultiQI
interface enables a client to query an object proxy, or handler, for multiple
interfaces, using a single RPC call. By using this interface, instead of
relying on separate calls to IUnknown::QueryInterface
When to Implement
You never
have to implement this interface because there is no situation in which it is
required. OLE server applications that rely on COM s standard remoting support
get the interface for free because COM implements it on every object proxy. The
only situation in which you might want to implement this interface yourself is
if you are writing a custom marshaler that handles interface remoting. Even
here, implementing IMultiQI yourself is not recommended, particularly if
your object is aggregatable.
When to Use
When more
than one interface pointer is sought, client applications should QueryInterface
for IMultiQI and use it if available.
Methods in VTable Order
IUnknown Methods |
Description |
QueryInterface |
Returns
pointers to supported interfaces. |
AddRef |
Increments
reference count. |
Release |
Decrements
reference count. |
IMultiQI Methods |
Description |
QueryMultipleInterfaces |
Queries for
multiple interfaces. |
See Also