| Property | Defined by | ||
|---|---|---|---|
| domain : String [read-only]
Indicates the domain value of the url.
| URL | ||
| hostName : String [read-only]
Indicates the host name value of the url.
| URL | ||
| path : String [read-only]
Indicates the path value of the url.
| URL | ||
| protocol : Protocols
[read-only]
Indicates the protocol value of the url.
| URL | ||
| search : String [read-only]
Indicates the search of the url.
| URL | ||
| subDomain : String [read-only]
Indicates the subdomain value of the url.
| URL | ||
| Method | Defined by | ||
|---|---|---|---|
|
URL(url:String = "")
Creates a new URL instance.
| URL | ||
| domain | property |
domain:String [read-only]Indicates the domain value of the url.
Implementation public function get domain():String
| hostName | property |
hostName:String [read-only]Indicates the host name value of the url.
Implementation public function get hostName():String
| path | property |
path:String [read-only]Indicates the path value of the url.
Implementation public function get path():String
| protocol | property |
protocol:Protocols [read-only]Indicates the protocol value of the url.
Implementation public function get protocol():Protocols
| search | property |
search:String [read-only]Indicates the search of the url.
Implementation public function get search():String
| subDomain | property |
subDomain:String [read-only]Indicates the subdomain value of the url.
Implementation public function get subDomain():String
| URL | () | constructor |
public function URL(url:String = "")Creates a new URL instance.
Parametersurl:String (default = "") — The String expression to defines the URL instance.
|