Share via


INTERNET_PER_CONN_OPTION_LIST (Windows Embedded CE 6.0)

1/6/2010

This structure contains the list of options for a particular Internet connection.

Syntax

typedef struct {
  DWORD dwSize;
  LPTSTR pszConnection;
  DWORD dwOptionCount;
  DWORD dwOptionError;
  LPINTERNET_PER_CONN_OPTION pOptions;
} INTERNET_PER_CONN_OPTION_LIST, *LPINTERNET_PER_CONN_OPTION_LIST;

Members

  • dwSize
    Unsigned long integer value that contains the size of this structure.
  • pszConnection
    Pointer to a string value that contains the name of the RAS connection or NULL, which indicates the default or LAN connection, to set or query options on.
  • dwOptionCount
    Unsigned long integer value that contains the number of options to query or set.
  • dwOptionError
    Unsigned long integer value that contains the options that failed if an error occurs.
  • pOptions
    Pointer to an array of INTERNET_PER_CONN_OPTION_LIST structures containing the options to query or set.

Remarks

In Internet Explorer 5, only the ANSI versions of InternetQueryOption and InternetSetOption will work with this structure. The Unicode versions will support using this structure in later versions of Internet Explorer.

Requirements

Header wininet.h
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

WinInet Structures
InternetQueryOption
InternetSetOption