| Package | com.jeffdePascale.fosfr.core |
| Class | public class URLInfo |
See also
| Property | Defined by | ||
|---|---|---|---|
| domain : String [read-only]
The domain from the address bar.
| URLInfo | ||
| params : Object [read-only]
An object containing all of the query string parameters.
| URLInfo | ||
| url : String [read-only]
The full URL in the addres bar.
| URLInfo | ||
| Method | Defined by | ||
|---|---|---|---|
|
URLInfo(_fosfr:FosfrBaseClass)
| URLInfo | ||
|
getParam(parameter:String):String
Returns the value of the specified parameter from the query string as a string.
| URLInfo | ||
|
setURL(url:String):void
| URLInfo | ||
|
updateQueryInfo():void
Repopulates properties with the current query string values and url information.
| URLInfo | ||
| domain | property |
domain:String [read-only]The domain from the address bar.
Implementation public function get domain():String
| params | property |
params:Object [read-only]An object containing all of the query string parameters.
Implementation public function get params():Object
| url | property |
url:String [read-only]The full URL in the addres bar.
Implementation public function get url():String
| URLInfo | () | constructor |
| getParam | () | method |
public function getParam(parameter:String):StringReturns the value of the specified parameter from the query string as a string.
Parametersparameter:String — The name of the parameter to get the value of.
|
String — The value of the specified parameter.
|
| setURL | () | method |
public function setURL(url:String):voidParameters
url:String |
| updateQueryInfo | () | method |
public function updateQueryInfo():voidRepopulates properties with the current query string values and url information.