<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > CURL > cUrl_Http > <cUrl_Http> Response Properties > <cUrl_Http>.Error |
Description
Read only property to retrieve request error output.
Syntax
stdErr = <cUrl_Http>.Error
Returns
String containing the request standard error output.
Remarks
Value is filled by using the <cUrl_Http>.Exec.
Restrictions
Read only.
See also
Examples
uses "curl", "console"
Dim httpRequest As New cUrl_Http("https://www.thinbasic.com")
httpRequest.Exec
printl httpRequest.Error ' Will not contain anything in this case, as request is valid