WINHTTP_HOST_CONNECTION_GROUP structure (winhttp.h)

Represents a collection of connection groups.

Syntax

typedef struct _WINHTTP_HOST_CONNECTION_GROUP {
  PCWSTR                    pwszHost;
  ULONG                     cConnectionGroups;
  PWINHTTP_CONNECTION_GROUP pConnectionGroups;
} WINHTTP_HOST_CONNECTION_GROUP, *PWINHTTP_HOST_CONNECTION_GROUP;

Members

pwszHost

Type: PCWSTR

A string containing the host name.

cConnectionGroups

Type: ULONG

The number of elements in pConnectionGroups.

pConnectionGroups

Type: PWINHTTP_CONNECTION_GROUP

An array of WINHTTP_CONNECTION_GROUP objects.

Requirements

Requirement Value
Minimum supported client Windows Build 22000
Minimum supported server Windows Build 22000
Header winhttp.h

See also