Package | com.adobe.dct.util |
Classe | public class HTTPUtil |
Héritage | HTTPUtil Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 9.5 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Méthode | Défini par | ||
---|---|---|---|
HTTPUtil()
Constructor. | HTTPUtil | ||
[statique]
Retrieves the context that follows the base of the URL.
For example, http://www.adobe.com/snc?x=1&y=2 returns /snc.
| HTTPUtil | ||
[statique]
Retrieves the current host name.
For example, http://www.adobe.com/?x=1&y=2 returns www.adobe.com.
| HTTPUtil | ||
[statique]
Retrieves a URL parameter value by name and returns it as a string. | HTTPUtil | ||
[statique]
Retrieves the current port for the URL. | HTTPUtil | ||
[statique]
Retrieves the current protocol, such as http: or https:. | HTTPUtil | ||
[statique]
Retrieves the current URL of the application used to play the SWF file. | HTTPUtil | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie la représentation sous forme de chaîne de l’objet spécifié. | Object | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
HTTPUtil | () | Constructeur |
public function HTTPUtil()
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 9.5 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Constructor.
getContext | () | méthode |
public static function getContext():String
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 9.5 |
Versions du moteur d’exécution: | 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éthode |
public static function getHostName():String
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 9.5 |
Versions du moteur d’exécution: | 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éthode |
public static function getParameterValue(key:String):String
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 9.5 |
Versions du moteur d’exécution: | 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.
Paramètres
key:String — the url parameter key
|
String — The URL parameter value by name, as a string.
|
getPort | () | méthode |
getProtocol | () | méthode |
public static function getProtocol():String
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 9.5 |
Versions du moteur d’exécution: | 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éthode |
public static function getUrl():String
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 9.5 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Retrieves the current URL of the application used to play the SWF file. For example, Adobe Flash Player.
Valeur renvoyéeString — The current URL of the SWF player.
|
Tue Jun 12 2018, 09:30 AM Z