classType |
Static function that all classes support that returns the type of the class as a string. The returned string matches the string returned by the objectType property. For example if you have a reference to an object and you want to check if it's a SketchLine you can use myObject.objectType == fusion.SketchLine.classType(). |
create |
Creates a new HttpRequest object. |
execute |
Execute this request asynchronously. The response will be sent to the completed event. |
executeSync |
Execute this request synchronously. This will block the thread until the request completes. |
getHeader |
Gets the value of the specified header and returns the value. |
hasHeader |
Gets if the request has a header with the given name. This is useful to distinguish between the case where a header is not set and the case where a header is set to an empty string. |
headers |
Get the request headers. |
removeHeader |
Removes a header from the request. |
setHeader |
Sets a header for the request. |