| Package | com.arc90.rpc.events |
| Class | public class FaultEvent |
| Inheritance | FaultEvent flash.events.Event |
| Property | Defined by | ||
|---|---|---|---|
| fault : Fault [read-only]
The underlying Fault object.
| FaultEvent | ||
| headers : Object [read-only]
The HTTP Response headers.
| FaultEvent | ||
| statusCode : Number [read-only]
The HTTP Status Code.
| FaultEvent | ||
| statusMessage : String [read-only]
The HTTP Status Message.
| FaultEvent | ||
| Method | Defined by | ||
|---|---|---|---|
|
FaultEvent(type:String, statusCode:Number, statusMessage:String, headers:Object, fault:Fault = null)
Constructor.
| FaultEvent | ||
|
toString():String
Returns a string representation of the FaultEvent.
| FaultEvent | ||
| Constant | Defined by | ||
|---|---|---|---|
| FAULT : String = "fault" [static]
The FAULT event type.
| FaultEvent | ||
| fault | property |
fault:Fault [read-only]The underlying Fault object.
Implementation public function get fault():Fault
| headers | property |
headers:Object [read-only]The HTTP Response headers.
Implementation public function get headers():Object
| statusCode | property |
statusCode:Number [read-only]The HTTP Status Code.
Implementation public function get statusCode():Number
| statusMessage | property |
statusMessage:String [read-only]The HTTP Status Message.
Implementation public function get statusMessage():String
| FaultEvent | () | constructor |
public function FaultEvent(type:String, statusCode:Number, statusMessage:String, headers:Object, fault:Fault = null)Constructor.
Parameterstype:String — The event type; indicates the action that triggered the event.
|
|
statusCode:Number — The HTTP Status Code.
|
|
statusMessage:String — The HTTP Status Message.
|
|
headers:Object — The HTTP Response Headers.
|
|
fault:Fault (default = null) — The underlying Fault object.
|
| toString | () | method |
public override function toString():StringReturns a string representation of the FaultEvent.
ReturnsString — String representation of the FaultEvent.
|
| FAULT | constant |
public static const FAULT:String = "fault"The FAULT event type.