ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
com.adobe.gravity.utility.url 

URIParser  - AS3 ADEP Client Component

Packagecom.adobe.gravity.utility.url
Classpublic class URIParser
InheritanceURIParser Inheritance Object

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

Parser for URIs. Compliant with IETF RFC 3986.



Public Properties
 PropertyDefined By
  authority : String
The URI authority component.
URIParser
  canonicalURI : String
[read-only] The canonical representation of the URI.
URIParser
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  fragment : String
The fragment component of the URI.
URIParser
  originalPath : String
[read-only] The original path component.
URIParser
  path : String
The path component of the URI.
URIParser
  query : String
The query portion of the URI.
URIParser
  scheme : String
The URI scheme.
URIParser
Public Methods
 MethodDefined By
  
URIParser(uri:String = null)
Constructor.
URIParser
 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 this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Property Detail

authority

property
authority:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

The URI authority component.



Implementation
    public function get authority():String
    public function set authority(value:String):void

canonicalURI

property 
canonicalURI:String  [read-only]

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

The canonical representation of the URI.



Implementation
    public function get canonicalURI():String

fragment

property 
fragment:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

The fragment component of the URI.



Implementation
    public function get fragment():String
    public function set fragment(value:String):void

originalPath

property 
originalPath:String  [read-only]

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

The original path component.



Implementation
    public function get originalPath():String

path

property 
path:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

The path component of the URI. Note that any "dot segments" will be removed using the algorithm in IETF RFC 3986.



Implementation
    public function get path():String
    public function set path(value:String):void

query

property 
query:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

The query portion of the URI.



Implementation
    public function get query():String
    public function set query(value:String):void

scheme

property 
scheme:String

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

The URI scheme.



Implementation
    public function get scheme():String
    public function set scheme(value:String):void
Constructor Detail

URIParser

()Constructor
public function URIParser(uri:String = null)

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Runtime Versions: AIR 1.1, Flash Player 9

Constructor.

Parameters
uri:String (default = null) — URI to parse.