IConnectionPointContainer.FindConnectionPoint(Guid, IConnectionPoint) 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.
Queries the connectable object about whether it has a connection point for a particular IID, and, if so, returns the IConnectionPoint
interface pointer to that connection point.
public:
void FindConnectionPoint(Guid % riid, [Runtime::InteropServices::Out] Microsoft::VisualBasic::Compatibility::VB6::IConnectionPoint ^ % cp);
public void FindConnectionPoint (ref Guid riid, out Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint cp);
abstract member FindConnectionPoint : Guid * IConnectionPoint -> unit
Public Sub FindConnectionPoint (ByRef riid As Guid, ByRef cp As IConnectionPoint)
Parameters
- riid
- Guid
A reference to the outgoing interface IID whose connection point is being requested.
When the method returns, this parameter contains the connection point that manages the outgoing interface riid
. This parameter is passed uninitialized.
Remarks
For new development, see IConnectionPointContainer.
Note
Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic 2008. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.