Package | coldfusion.air.events |
Classe | public class SessionFaultEvent |
Héritage | SessionFaultEvent Event Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | ColdFusion 9 |
Versions du moteur d’exécution: | Flash Player 9, AIR 1.0 |
Propriétés publiques
Propriété | Défini par | ||
---|---|---|---|
bubbles : Boolean [lecture seule]
Indique si un événement peut se propager vers le haut (bubbling). | Event | ||
cancelable : Boolean [lecture seule]
Indique si le comportement associé à l’événement peut être évité. | Event | ||
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
currentTarget : Object [lecture seule]
L’objet qui traite activement l’objet Event avec un écouteur d’événements. | Event | ||
error : Error
The Error Object that holds details of the error. | SessionFaultEvent | ||
errorSQL : String
The SQL statement used when the error occurred. | SessionFaultEvent | ||
eventPhase : uint [lecture seule]
Phase actuelle du flux d’événements. | Event | ||
sessionToken : coldfusion.air:SessionToken
Token representing the call to the method. | SessionFaultEvent | ||
target : Object [lecture seule]
Cible de l’événement. | Event | ||
type : String [lecture seule]
Type d’événement. | Event |
Méthodes publiques
Méthode | Défini par | ||
---|---|---|---|
SessionFaultEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, error:Error = null, errorSQL:String = null, sessionToken:coldfusion.air:SessionToken = null)
Creates a SessionFaultEvent object, which contains information about the error
that occurs when accessing the methods of the Session Class. | SessionFaultEvent | ||
Duplique une occurrence d’une sous-classe Event. | Event | ||
createEvent(error:Error, errorSQL:String, sessionToken:coldfusion.air:SessionToken):SessionFaultEvent [statique]
Given an error, this function constructs and
returns a SessionFaultEvent. | SessionFaultEvent | ||
Fonction d’un utilitaire permettant d’implémenter la méthode toString() dans des classes Event ActionScript 3.0 personnalisées. | Event | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Vérifie si la méthode preventDefault() a été appelée pour l’événement. | Event | ||
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 | ||
Annule le comportement par défaut d’un événement si cette opération est possible. | Event | ||
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 | ||
Bloque le traitement des écouteurs d’événement dans le nœud actuel et les suivants dans le flux d’événements. | Event | ||
Bloque le traitement des écouteurs d’événement dans les nœuds qui suivent le nœud actuel dans le flux d’événements. | Event | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie une chaîne répertoriant toutes les propriétés de l’objet Event. | Event | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
Constantes publiques
Constante | Défini par | ||
---|---|---|---|
FAULT : String = "fault" [statique]
Defines the value of the Type property of a SessionFaultEvent object. | SessionFaultEvent |
Détails de la propriété
error | propriété |
public var error:Error
Version du langage: | ActionScript 3.0 |
Version du produit: | ColdFusion 9 |
Versions du moteur d’exécution: | Flash Player 9, AIR 1.0 |
The Error Object that holds details of the error.
errorSQL | propriété |
public var errorSQL:String
Version du langage: | ActionScript 3.0 |
Version du produit: | ColdFusion 9 |
Versions du moteur d’exécution: | Flash Player 9, AIR 1.0 |
The SQL statement used when the error occurred.
sessionToken | propriété |
public var sessionToken:coldfusion.air:SessionToken
Version du langage: | ActionScript 3.0 |
Version du produit: | ColdFusion 9 |
Versions du moteur d’exécution: | Flash Player 9, AIR 1.0 |
Token representing the call to the method. Used in the asynchronous completion token pattern.
Détails du constructeur
SessionFaultEvent | () | Constructeur |
public function SessionFaultEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, error:Error = null, errorSQL:String = null, sessionToken:coldfusion.air:SessionToken = null)
Version du langage: | ActionScript 3.0 |
Version du produit: | ColdFusion 9 |
Versions du moteur d’exécution: | Flash Player 9, AIR 1.0 |
Creates a SessionFaultEvent object, which contains information about the error that occurs when accessing the methods of the Session Class.
Paramètrestype:String — The type of the event. Event listeners can access this information through the inherited
type property.
| |
bubbles:Boolean (default = false ) — Determines whether the Event object participates in the bubbling phase of the event flow.
| |
cancelable:Boolean (default = true ) — Determines whether the Event object can be canceled.
Event listeners can access this information through the inherited cancelable property.
| |
error:Error (default = null ) — The Error Object that holds details of the error.
| |
errorSQL:String (default = null ) — The SQL statement used when the error occurred.
| |
sessionToken:coldfusion.air:SessionToken (default = null ) — Token representing the call to the method. Used in the asynchronous completion token pattern.
|
Détails de la méthode
createEvent | () | méthode |
public static function createEvent(error:Error, errorSQL:String, sessionToken:coldfusion.air:SessionToken):SessionFaultEvent
Version du langage: | ActionScript 3.0 |
Version du produit: | ColdFusion 9 |
Versions du moteur d’exécution: | Flash Player 9, AIR 1.0 |
Given an error, this function constructs and returns a SessionFaultEvent.
Paramètres
error:Error — Error that contains the details of the SessionFaultEvent.
| |
errorSQL:String — The SQL statement used when the error occurred.
| |
sessionToken:coldfusion.air:SessionToken — SessionToken [optional] associated with this error.
|
SessionFaultEvent |
Détails de la constante
FAULT | Constante |
public static const FAULT:String = "fault"
Version du langage: | ActionScript 3.0 |
Version du produit: | ColdFusion 9 |
Versions du moteur d’exécution: | Flash Player 9, AIR 1.0 |
Defines the value of the Type
property of a SessionFaultEvent object.
Tue Jun 12 2018, 09:30 AM Z