Skip to content

libcURL.cURLSession.ResponseHeaders

Andrew Lambert edited this page Nov 26, 2022 · 3 revisions

libcURL.cURLSession.ResponseHeaders

Property declaration

 Dim ResponseHeaders As libcURL.ResponseHeaderEngine

Remarks

Returns a reference to a ResponseHeaderEngine instance.

Syntax example

  Dim curl As New cURLClient
  If curl.Get("https://www.example.com/") Then
    Dim header As libcURL.ResponseHeader = curl.ResponseHeaders.GetHeader("Content-Type")
    MsgBox(header.Name + ": " + header.Value)
  End If
Clone this wiki locally