All pages
Powered by GitBook
1 of 1

Loading...

SWebResponse

Index

Properties Index

Property Name

Properties

Error

string Error get

Any error, will be empty or null if the request was successful

Response

string Response get

The body text of the webpage response if error is empty or null

string Error

string Response

function ResponseFunction(responseData)
stringError = responseData.Error
end
Space.WebServices.Get('aURL', ResponseFunction)
function ResponseFunction(responseData)
stringResponse = responseData.Response
end
Space.WebServices.Get('aURL', ResponseFunction)