URLConnection.ResponseHeaders

From Xojo Documentation

Method

URLConnection.ResponseHeaders() As Iterator

New in 2019r2

Supported for all project types and targets.

Used to iterate over all response headers.

Sample Code

Var connection As New URLConnection

Var headers() As Pair
For Each header As Pair In connection.ResponseHeaders
headers.AddRow(header)
Next