Pacote | coldfusion.service.events |
Classe | public class ColdFusionServiceFaultEvent |
Herança | ColdFusionServiceFaultEvent FaultEvent AbstractEvent MessageEvent Event Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | ColdFusion 9 |
Versões de runtime: | Flash Player 9, AIR 1.0 |
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
ColdFusionServiceFaultEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, fault:Fault = null, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Creates a ColdFusionServiceFaultEvent object that contains information about
ColdFusion service errors. | ColdFusionServiceFaultEvent | ||
[substituir]
Clones the MessageEvent. | MessageEvent | ||
[estático]
Given a fault, this function constructs and
returns a ColdFusionServiceFaultEvent. | ColdFusionServiceFaultEvent | ||
[estático]
Given a MessageFaultEvent, this method constructs and
returns a FaultEvent. | FaultEvent | ||
Uma função de utilitário para implementar o método toString() em classes ActionScript 3.0 Event personalizadas. | Event | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Verifica se o método preventDefault() foi chamado no evento. | Event | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Cancela um comportamento padrão de evento se esse comportamento puder ser cancelado. | Event | ||
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 | ||
Impede o processamento de qualquer ouvinte de evento no nó atual e qualquer nó subsequente no fluxo de eventos. | Event | ||
Impede o processamento de algum ouvinte de evento em nós subsequentes ao nó atual no fluxo de eventos. | Event | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
[substituir]
Returns a string representation of the FaultEvent. | FaultEvent | ||
Retorna o valor primitivo do objeto especificado. | Object |
Constantes públicas
Constante | Definido por | ||
---|---|---|---|
FAULT : String = "fault" [estático]
Defines the value of the Type property of a ColdFusionServiceFaultEvent object. | ColdFusionServiceFaultEvent |
Detalhes do construtor
ColdFusionServiceFaultEvent | () | Construtor |
public function ColdFusionServiceFaultEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, fault:Fault = null, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | ColdFusion 9 |
Versões de runtime: | Flash Player 9, AIR 1.0 |
Creates a ColdFusionServiceFaultEvent object that contains information about ColdFusion service errors.
Parâmetrostype: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.
|
Detalhes do método
createEvent | () | método |
public static function createEvent(fault:Fault, token:mx.rpc:AsyncToken, message:IMessage):ColdFusionServiceFaultEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | ColdFusion 9 |
Versões de runtime: | Flash Player 9, AIR 1.0 |
Given a fault, this function constructs and returns a ColdFusionServiceFaultEvent.
Parâmetros
fault:Fault — Fault that contains the details of the FaultEvent.
| |
token:mx.rpc:AsyncToken — AsyncTokAsyncToken en [optional] associated with this fault.
| |
message:IMessage |
ColdFusionServiceFaultEvent |
Detalhes da constante
FAULT | Constante |
public static const FAULT:String = "fault"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | ColdFusion 9 |
Versões de runtime: | Flash Player 9, AIR 1.0 |
Defines the value of the Type
property of a ColdFusionServiceFaultEvent object.
Wed Jun 13 2018, 11:10 AM Z