Skip to content

libcURL.ListPtr.Append

Andrew Lambert edited this page Jan 14, 2023 · 10 revisions

Method Signature

 Sub Append(Data As String)

Parameters

Name Type Comment
Data String The string to be appended to the list

Remarks

Adds a string to the list of strings. For example, the HTTP header Connection: close would be added like this:

   Dim lst As New libcURL.ListPtr
   lst.Append("Connection: close")
Clone this wiki locally