Edit

Share via


HS_PLUGIN_CELLULAR_EXCEPTION_HOSTS structure

Wi-Fi Hotspot Offloading deprecation note

Important

Starting in Windows 10, version 1709, the Wi-Fi Hotspot Offloading feature is deprecated and should not be used. Instead, we recommend writing a UWP app and using the Wi-Fi Hotspot Authentication API (Windows.Networking.NetworkOperators).

For a code sample and more info, see the Wi-Fi hotspot authentication sample.

The HS_PLUGIN_CELLULAR_EXCEPTION_HOSTS structure contains the list of hosts that the plugin requires to be connected over a cellular bearer only during the authentication process. This is an optional capability that can be requested by the plugin. For more information, see HS_PLUGIN_QUERY_CELLULAR_EXCEPTION_HOSTS.

Syntax

typedef struct _HS_PLUGIN_CELLULAR_EXCEPTION_HOSTS {
  DWORD               dwCount;
  HS_PLUGIN_HOST_NAME pExceptions[*];
  HS_PLUGIN_HOST_NAME pExceptions[1];
} HS_PLUGIN_CELLULAR_EXCEPTION_HOSTS, *PHS_PLUGIN_CELLULAR_EXCEPTION_HOSTS;

Members

dwCount
The number of host names in the list pointed to by pExceptions.

pExceptions
Used if MIDL is utilized. Unique, size is (dwCount).

Pointer to the list of host names.

pExceptions
Used if MIDL is not utilized.

Pointer to the list of host names.

Requirements

Header

Hotspotoffloadplugin.h (include Hotspotoffloadplugin.h)

See also

HS_PLUGIN_QUERY_CELLULAR_EXCEPTION_HOSTS

Microsoft Interface Definition Language