IMbnPinManagerEvents::OnPinListAvailable 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 the list of device PINs is available.

Syntax

HRESULT OnPinListAvailable(
  [in] IMbnPinManager *pinManager
);

Parameters

[in] pinManager

Pointer to an IMbnPinManager interface that represents the Mobile Broadband device for which the PIN list is available.

Return value

This method must return S_OK.

Remarks

This method is called by the Mobile Broadband service to notify an application when the list of supported PIN types is available or if a PIN list retrieval operation resulted in an error. The calling application can issue the GetPinList method of the passed IMbnPinManager to get the available list of supported PINs or error code returned in the operation.

Requirements

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

See also

IMbnPinManagerEvents