<cUrl_Http>.Output

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > CURL > cUrl_Http > <cUrl_Http> Response Properties >

<cUrl_Http>.Output

 

Description

 

Read only property to retrieve request output.

 

Syntax

 

output = <cUrl_Http>.Output

 

Returns

 

String containing the request 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.Output ' Will contain web page contents