Static variables
Static methods
staticrequestUrl(url:String):String
Makes a synchronous request to url
.
This creates a new Http instance and makes a GET request by calling its
request(false)
method.
If url
is null, the result is unspecified.
Constructor
Variables
Methods
fileTransfer(argname:String, filename:String, file:Input, size:Int, mimeType:String = "application/octet-stream"):Void
getResponseHeaderValues(key:String):Null<Array<String>>
Returns an array of values for a single response header or returns
null if no such header exists.
This method can be useful when you need to get a multiple headers with
the same name (e.g. Set-Cookie
), that are unreachable via the
responseHeaders
variable.