libcURL.cURLSession.ResponseHeaders - charonn0/RB-libcURL GitHub Wiki

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