Hm, TRESTHTTPExt kann ich bei mir nicht finden. Ist das ein Record Helper, den die erst in D11.3 eingebaut haben? Wir sind noch mit 11.2 unterwegs. Oder ich stelle mich zu blöd an.
In D11.
3 beginnt die Definition in Zeile 261 der
Unit REST.HttpClient.
Delphi-Quellcode:
TRESTHTTPExt = class(TRESTHTTP)
private
FClientCertificatePassword: string;
FClientCertificatePath: string;
FClientCertificateStream: TStream;
procedure SetClientCertificatePath(const AValue: string);
procedure SetClientCertificateStream(const AValue: TStream);
public
property ClientCertificateStream: TStream read FClientCertificateStream write SetClientCertificateStream;
property ClientCertificatePath: string read FClientCertificatePath write SetClientCertificatePath;
property ClientCertificatePassword: string read FClientCertificatePassword write FClientCertificatePassword;
end;