System.Net.HttpClient.IHTTPResponse.HeaderValue
Delphi
property HeaderValue[const AName: string]: string read GetHeaderValue;
C++
__property System::UnicodeString HeaderValue[const System::UnicodeString AName] = {read=GetHeaderValue};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | System.Net.HttpClient.pas System.Net.HTTPClient.hpp |
System.Net.HttpClient | IHTTPResponse |
Description
Holds the header values.
The AName
parameter is the name of the header.
The HeaderValue property uses GetHeaderValue as getter method to return the string value associated with the name provided with the AName
parameter.