Pacchetto | coldfusion.air.events |
Classe | public class SyncFaultEvent |
Ereditarietà | SyncFaultEvent FaultEvent AbstractEvent MessageEvent Event Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
Proprietà pubbliche
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
SyncFaultEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, fault:Fault = null, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Creates a SyncFaultEvent object. | SyncFaultEvent | ||
[override]
Clones the MessageEvent. | MessageEvent | ||
[statico]
Given a fault, this function constructs and
returns a SyncFaultEvent. | SyncFaultEvent | ||
[statico]
Given a MessageFaultEvent, this method constructs and
returns a FaultEvent. | FaultEvent | ||
Una funzione dell'utilità per l'implementazione del metodo toString() in classi Event ActionScript 3.0 personalizzate. | Event | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Verifica se sull'evento è stato chiamato il metodo preventDefault(). | Event | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Annulla il comportamento predefinito di un evento se tale comportamento può essere annullato. | Event | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Impedisce l'elaborazione di tutti i listener di eventi nel nodo corrente e in tutti i nodi successivi del flusso di eventi. | Event | ||
Impedisce l'elaborazione di tutti i listener di eventi nei nodi del flusso di eventi successivi a quello corrente. | Event | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
[override]
Returns a string representation of the FaultEvent. | FaultEvent | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Costanti pubbliche
Costante | Definito da | ||
---|---|---|---|
FAULT : String = "fault" [statico]
The type of the event. | SyncFaultEvent |
Descrizione della funzione di costruzione
SyncFaultEvent | () | Funzione di costruzione |
public function SyncFaultEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, fault:Fault = null, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
Creates a SyncFaultEvent object.
Parametritype: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.
| |
fault:Fault (default = null ) — Object that holds details of the fault, including a faultCode and faultString.
| |
token:mx.rpc:AsyncToken (default = null ) — Token representing the call to the method. Used in the asynchronous completion token pattern.
| |
message:IMessage (default = null ) — Source Message of the fault.
|
Descrizione dei metodi
createEvent | () | metodo |
public static function createEvent(fault:Fault, token:mx.rpc:AsyncToken, message:IMessage = null):SyncFaultEvent
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
Given a fault, this function constructs and returns a SyncFaultEvent.
Parametri
fault:Fault — Fault that contains the details of the FaultEvent.
| |
token:mx.rpc:AsyncToken — AsyncTokAsyncToken en [optional] associated with this fault.
| |
message:IMessage (default = null )
|
SyncFaultEvent |
Descrizione delle costanti
FAULT | Costante |
public static const FAULT:String = "fault"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
The type of the event.
Tue Jun 12 2018, 02:44 PM Z