- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.cURLClient.Head
Andrew Lambert edited this page Jun 28, 2022
·
13 revisions
libcURL.cURLClient.Head
Function Head(URL As String) As Boolean
Sub Head(URL As String)
Name | Type | Comment |
---|---|---|
URL | String |
The RFC 3986 URI to get headers for. |
The synchronous version of this method returns True
on success..
Performs a header-only operation using protocol-appropriate semantics (http HEAD
, etc.) Once the transfer completes, you may access the headers by calling cURLClient.ResponseHeaders.
If the URL
parameter is empty (""
) then the previous URL is reused; if there is no previous URL then the transfer will fail with error code CURLE_URL_MALFORMAT
(3). If the previous transfer involved any sort of redirection then the "previous URL" is the URL enclosed in the final redirect.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.