IMbnConnectionEvents interface (mbnapi.h)

Important

Starting in Windows 10, version 1803, the Win32 APIs described in this section are replaced by the Windows Runtime APIs in the Windows.Networking.Connectivity namespace.

This notification interface signals an application about change and completion status of asynchronous connection requests.

Inheritance

The IMbnConnectionEvents interface inherits from the IUnknown interface. IMbnConnectionEvents also has these types of members:

Methods

The IMbnConnectionEvents interface has these methods.

 
IMbnConnectionEvents::OnConnectComplete

Notification method that signals the completion of a connection operation.
IMbnConnectionEvents::OnConnectStateChange

Notification method that indicates whether the connection state of the device has changed.
IMbnConnectionEvents::OnDisconnectComplete

Notification method that indicates that a disconnection operation has been performed.
IMbnConnectionEvents::OnVoiceCallStateChange

Notification method that indicates a change in the voice call state of a device.

Remarks

The following procedure describes how to register for notifications.

  1. Get an IConnectionPointContainer interface by calling QueryInterface on an IMbnConnectionManager object.
  2. Call FindConnectionPoint on the returned interface and pass IID_IMbnConnectionEvents to riid.
  3. Call Advise on the returned connection point and pass a pointer to an IUnknown interface on an object that implements IMbnConnectionEvents to pUnk.
Notifications can be terminated by calling Unadvise on the connection point returned in step 2.

To view some code that registers for COM notifications, see the Client section of the COM Connection Points article.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps | UWP apps]
Minimum supported server None supported
Target Platform Windows
Header mbnapi.h