AxHost.ConnectionPointCookie(Object, Object, Type) Constructor

Definition

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.

sink does not implement eventInterface.

-or-

source does not implement IConnectionPointContainer.

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.

Applies to