Packageorg.apache.flex.net
Classpublic class HTTPHeader
InheritanceHTTPHeader Inheritance Object

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The data class for HTTP headers in HTTP server communications.



Public Properties
 PropertyDefined By
  name : String
The name of the header.
HTTPHeader
  value : String
The value for the header.
HTTPHeader
Public Methods
 MethodDefined By
  
HTTPHeader(name:String = null, value:String = null)
Constructor.
HTTPHeader
Public Constants
 ConstantDefined By
  CONTENT_TYPE : String = Content-type
[static] The Content-type header.
HTTPHeader
Property Detail
nameproperty
public var name:String

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The name of the header.

valueproperty 
public var value:String

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The value for the header.

Constructor Detail
HTTPHeader()Constructor
public function HTTPHeader(name:String = null, value:String = null)

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

Constructor.

Parameters
name:String (default = null) — The name of the header.
 
value:String (default = null) — The value for that header.
Constant Detail
CONTENT_TYPEConstant
public static const CONTENT_TYPE:String = Content-type

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The Content-type header.