Indy TIdHTTPServer.OnCommandGet - 连接到哪个端口?

Indy TIdHTTPServer.OnCommandGet - which port was connected to?

我有一个可以在多个端口上访问的 TIdHTTPServer(由于迁移),我需要找出当前数据(在 OnCommandGet 中)的来源。我可以从哪里获取正确的端口号?

AContext.Binding.Port.

在 Delphi 10.3.3 的 IdHTTPServer 的 CommandGet 处理程序中使用以下内容进行测试:

AResponseInfo.ContentText := '<!DOCTYPE html><html lang="en"> +
  '<head><title>A Test Response</title></head>' +
  '<body>Target port: ' + IntToStr(AContext.Binding.Port) +
  '</body></html>';