You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-12-13 21:45:55 +02:00
PostDataInspector demo
This commit is contained in:
@@ -416,9 +416,14 @@ begin
|
||||
Result := False;
|
||||
|
||||
if (frame <> nil) and frame.IsMain and (response <> nil) and (request <> nil) then
|
||||
FResponse := 'URL : ' + request.Url + #13 + #10 +
|
||||
'Status : ' + inttostr(response.Status) + #13 + #10 +
|
||||
'MimeType : ' + response.MimeType;
|
||||
begin
|
||||
FResponse := 'URL : ' + request.Url + #13 + #10 +
|
||||
'Status : ' + inttostr(response.Status) + #13 + #10 +
|
||||
'MimeType : ' + response.MimeType;
|
||||
|
||||
if (request.postdata <> nil) then
|
||||
FResponse := FResponse + #13 + #10 + 'Post data elements : ' + inttostr(request.postdata.GetCount);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TMiniBrowserFrm.ShowStatusText(const aText : string);
|
||||
|
||||
Reference in New Issue
Block a user