Pacote | com.adobe.dct.util |
Classe | public class HTTPUtil |
Herança | HTTPUtil Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Método | Definido por | ||
---|---|---|---|
HTTPUtil()
Constructor. | HTTPUtil | ||
[estático]
Retrieves the context that follows the base of the URL.
For example, http://www.adobe.com/snc?x=1&y=2 returns /snc.
| HTTPUtil | ||
[estático]
Retrieves the current host name.
For example, http://www.adobe.com/?x=1&y=2 returns www.adobe.com.
| HTTPUtil | ||
[estático]
Retrieves a URL parameter value by name and returns it as a string. | HTTPUtil | ||
[estático]
Retrieves the current port for the URL. | HTTPUtil | ||
[estático]
Retrieves the current protocol, such as http: or https:. | HTTPUtil | ||
[estático]
Retrieves the current URL of the application used to play the SWF file. | HTTPUtil | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
HTTPUtil | () | Construtor |
public function HTTPUtil()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Constructor.
getContext | () | método |
public static function getContext():String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Retrieves the context that follows the base of the URL.
For example, http://www.adobe.com/snc?x=1&y=2
returns /snc
.
String — The context that follows the base of the URL.
|
getHostName | () | método |
public static function getHostName():String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Retrieves the current host name.
For example, http://www.adobe.com/?x=1&y=2
returns www.adobe.com.
String — The current host name.
|
getParameterValue | () | método |
public static function getParameterValue(key:String):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Retrieves a URL parameter value by name and returns it as a string. This function works without passing a FlashVars property into the SWF.
For example, even if the URL is domain.com?MyFlexPage.html?b=5
, it still returns 5
when 'b'
is passed.
This function uses JavaScript to find the URL parameters. Please note, however, that it only works for a GET request. It does not work for a POST request.
Parâmetros
key:String — the url parameter key
|
String — The URL parameter value by name, as a string.
|
getPort | () | método |
getProtocol | () | método |
public static function getProtocol():String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Retrieves the current protocol, such as http:
or https:
.
String — The current protocol, such as http: or https:.
|
getUrl | () | método |
public static function getUrl():String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Retrieves the current URL of the application used to play the SWF file. For example, Adobe Flash Player.
RetornaString — The current URL of the SWF player.
|
Wed Jun 13 2018, 11:10 AM Z