HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS structure (http.h)

The HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS structure contains the information for Basic authentication on a URL Group.

This structure is contained in the HTTP_SERVER_AUTHENTICATION_INFO structure.

Syntax

typedef struct _HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS {
  USHORT RealmLength;
  PWSTR  Realm;
} HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS, *PHTTP_SERVER_AUTHENTICATION_BASIC_PARAMS;

Members

RealmLength

The length, in bytes, of the Realm member.

Realm

The realm used for Basic authentication.

The realm allows the server to be partitioned into a set of protection spaces, each with its own set of authentication schemes from the authentication database.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header http.h

See also

HTTP Server API Version 2.0 Structures

HTTP_SERVER_AUTHENTICATION_INFO