Pacoteflash.html
Classepublic class HTMLHistoryItem
HerançaHTMLHistoryItem Inheritance Object

Describes a location in the navigation history of an HTMLLoader object.

Veja também

HTMLLoader
HTMLWindowCreateOptions


Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  isPost : Boolean
[read-only] Whether the HTML page includes POST data.
HTMLHistoryItem
  originalUrl : String
[read-only] The original URL of the HTML page, prior to any redirects.
HTMLHistoryItem
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  title : String
[read-only] The title of the HTML page.
HTMLHistoryItem
  url : String
[read-only] The URL of the HTML page.
HTMLHistoryItem
Métodos Públicos
 MétodoDefinido por
  
HTMLHistoryItem(url:String, originalUrl:String, isPost:Boolean, title:String)
The constructor function for an HTMLHistoryItem object.
HTMLHistoryItem
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes da propriedade
isPostpropriedade
isPost:Boolean  [read-only]

Whether the HTML page includes POST data.


Implementação
    public function get isPost():Boolean
originalUrlpropriedade 
originalUrl:String  [read-only]

The original URL of the HTML page, prior to any redirects.


Implementação
    public function get originalUrl():String
titlepropriedade 
title:String  [read-only]

The title of the HTML page.


Implementação
    public function get title():String
urlpropriedade 
url:String  [read-only]

The URL of the HTML page.


Implementação
    public function get url():String
Detalhes do construtor
HTMLHistoryItem()Construtor
public function HTMLHistoryItem(url:String, originalUrl:String, isPost:Boolean, title:String)

The constructor function for an HTMLHistoryItem object. AIR uses this class to create HTMLHistoryItem objects used by an HTMLLoader object. You will not use this constructor directly in your code.

Parâmetros
url:String — The resulting URL of the page.
 
originalUrl:String — The original URL of the page, prior to redirects.
 
isPost:Boolean — Whether the HTML page includes POST data.
 
title:String — The title of the HTML page.