The data to be uploaded. Note the type of this
property is org.apache.flex.utils.BinaryData.
This class abstracts the way binary data is handled
in the browser.
Implementation public function get binaryData():BinaryData public function set binaryData(value:BinaryData):void
contentType
property
contentType:String
Language Version :
ActionScript 3.0
Product Version :
FlexJS 0.0
Runtime Versions :
Flash Player 10.2, AIR 2.6
The content-type of the binary data.
The default value is application/octet-stream.
Implementation public function get contentType():String public function set contentType(value:String):void
data
property
data:* [read-only]
Language Version :
ActionScript 3.0
Product Version :
FlexJS 0.0
Runtime Versions :
Flash Player 10.2, AIR 2.6
Sometimes, after the upload, the server returns useful
information which will be available after the COMPLETE event.
Implementation public function get data():*
headers
property
headers:Array
Language Version :
ActionScript 3.0
Product Version :
FlexJS 0.0
Runtime Versions :
Flash Player 10.2, AIR 2.6
The HTTP headers to be sent with the upload.
Implementation public function get headers():Array public function set headers(value:Array):void
id
property
id:String
Language Version :
ActionScript 3.0
Product Version :
FlexJS 0.0
Runtime Versions :
Flash Player 10.2, AIR 2.6
An id property for MXML documents.
Implementation public function get id():String public function set id(value:String):void
method
property
method:String
Language Version :
ActionScript 3.0
Product Version :
FlexJS 0.0
Runtime Versions :
Flash Player 10.2, AIR 2.6
The HTTP method for the upload.
The default value is POST.
Implementation public function get method():String public function set method(value:String):void
responseHeaders
property
responseHeaders:Array [read-only]
Language Version :
ActionScript 3.0
Product Version :
FlexJS 0.0
Runtime Versions :
Flash Player 10.2, AIR 2.6
The HTTP headers that were received from the server
if any.
Implementation public function get responseHeaders():Array
responseURL
property
responseURL:String [read-only]
Language Version :
ActionScript 3.0
Product Version :
FlexJS 0.0
Runtime Versions :
Flash Player 10.2, AIR 2.6
The value of the responseURL header, if any.
Implementation public function get responseURL():String
Dispatched if Adobe AIR is able to detect and return the status
code for the request. Unlike the httpStatus event, the httpResponseStatus
event is delivered before any response data. Also, the httpResponseStatus
event includes values for the responseHeaders and responseURL properties
(which are undefined for an httpStatus event. Note that the
httpResponseStatus event (if any) will be sent before
(and in addition to) any complete or error event.