DSAzure.TAzureService.PopulateContainer

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
DSAzure.pas
DSAzure.hpp
Unit: DSAzure
Parent: TAzureService

Delphi

procedure PopulateContainer(const Prefix: String; const container: TStrings;
ExcludePrefixInKeys: Boolean = False);

C++

void __fastcall PopulateContainer(const System::UnicodeString Prefix, System::Classes::TStrings* const container, bool ExcludePrefixInKeys = false);

Description

Populates the given TStrings with key/value pairs for the previous HTTP response.

PopulateContainer populates the given TStrings with key/value pairs for the previous HTTP response. Prefix can be set to something other than an empty string to filter on only the response headers you are interested in. This filter is applied to the beginning of the key string, where the key string is the header field name.

See Also