Web.HTTPApp.TWebResponse.WWWAuthenticate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property WWWAuthenticate: string index 3 read GetStringVariable write SetStringVariable;

C++

__property System::UnicodeString WWWAuthenticate = {read=GetStringVariable, write=SetStringVariable, index=3};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebResponse

Description

Lists of one or more comma-separated challenges provided when the request fails with StatusCode 401 (Unauthorized).

Set WWWAuthenticate when the HTTP request fails because it requires access to a URI in a realm for which the Web client has not provided a password. WWWAuthenticate consists of an authentication scheme name, followed by a comma-separated list of parameter/value pairs that specify the parameters to the authentication scheme. The first parameter/value pair indicates the realm.

For more information about HTTP authentication schemes, see the Internet standards documents.

See Also