IMbnConnectionContextEvents::OnProvisionedContextListChange method (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.

Notification method called by the Mobile Broadband service to indicate that a provisioned context stored in the device is available or updated.

Syntax

HRESULT OnProvisionedContextListChange(
  [in] IMbnConnectionContext *newInterface
);

Parameters

[in] newInterface

An IMbnConnectionContext interface that represents the device for which the context is available or updated.

Return value

This method must return S_OK.

Remarks

An application can use the passed IMbnConnectionContext interface to get the list of provisioned contexts for the device.

OnProvisionedContextListChange is not called as the result of an update to an existing provisioned context from an application call of the SetProvisionedContext method of IMbnConnectionContext.

Requirements

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

See also

IMbnConnectionContextEvents