IConnectionPointContainer::FindConnectionPoint method (ocidl.h)

Returns a pointer to the IConnectionPoint interface of a connection point for a specified IID, if that IID describes a supported outgoing interface.

Syntax

HRESULT FindConnectionPoint(
  [in]  REFIID           riid,
  [out] IConnectionPoint **ppCP
);

Parameters

[in] riid

Interface identifier of the outgoing interface whose connection point object is being requested.

[out] ppCP

The address of an IConnectionPoint interface pointer variable that receives the pointer to the connection point that supports the riid interface. If an error occurs, the implementation sets the value to NULL.

Return value

This method can return the standard return values E_OUTOFMEMORY and E_UNEXPECTED, as well as the following values.

Return code Description
S_OK
The method completed successfully.
E_POINTER
The address in ppCP is not valid. For example, it may be NULL.
CONNECT_E_NOCONNECTION
This connectable object does not support the outgoing interface specified by riid.

Remarks

This method is the QueryInterface equivalent for an object's outgoing interfaces, where the outgoing interface is specified with riid and where the interface pointer returned is always that of a connection point.

Notes to Callers

If the call is successful, the caller is responsible for releasing the connection point by calling Release when the connection point is no longer needed.

Notes to Implementers

E_NOTIMPL is not allowed as a return value for this method. Any implementation of IConnectionPointContainer must implement this method for the connectable object's outgoing interfaces.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps | UWP apps]
Minimum supported server Windows 2000 Server [desktop apps | UWP apps]
Target Platform Windows
Header ocidl.h

See also

IConnectionPoint

IConnectionPointContainer