AxHost.ConnectionPointCookie(Object, Object, Type) Constructor
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.
Initializes a new instance of the AxHost.ConnectionPointCookie class.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
ConnectionPointCookie(System::Object ^ source, System::Object ^ sink, Type ^ eventInterface);
public ConnectionPointCookie (object source, object sink, Type eventInterface);
new System.Windows.Forms.AxHost.ConnectionPointCookie : obj * obj * Type -> System.Windows.Forms.AxHost.ConnectionPointCookie
Public Sub New (source As Object, sink As Object, eventInterface As Type)
Parameters
- source
- Object
A connectable object that contains connection points.
- sink
- Object
The client's sink which receives outgoing calls from the connection point.
- eventInterface
- Type
The outgoing interface whose connection point object is being requested.
Exceptions
source
does not implement eventInterface
.
The connection point has already reached its limit of connections and cannot accept any more.
Remarks
The AxHost.ConnectionPointCookie constructor establishes a connection between the ActiveX control and the client.