Status Event
Fired when the HTTP status line is received from the server.
Syntax
typedef void __fastcall (__closure *TipwHTTPStatusEvent)(System::TObject* Sender, TipwHTTPStatusEventParams *e);__property TipwHTTPStatusEvent OnStatus = {read=FOnStatus, write=FOnStatus};
typedef struct {
String HTTPVersion;
int StatusCode;
String Description;
} TipwHTTPStatusEventParams;
Remarks
HTTPVersion is a string containing the HTTP version string as returned from the server (e.g. "1.1").
StatusCode contains the HTTP status code (e.g. 200), and Description the associated message returned by the server (e.g. "OK").