| Package | com.arc90.rpc.events |
| Class | public class ResultEvent |
| Inheritance | ResultEvent flash.events.Event |
| Property | Defined by | ||
|---|---|---|---|
| headers : Object [read-only]
The HTTP Response headers.
| ResultEvent | ||
| result : Object [read-only]
The HTTP Response body.
| ResultEvent | ||
| statusCode : Number [read-only]
The HTTP Status Code.
| ResultEvent | ||
| statusMessage : String [read-only]
The HTTP Status Message.
| ResultEvent | ||
| Method | Defined by | ||
|---|---|---|---|
|
ResultEvent(type:String, statusCode:Number, statusMessage:String, headers:Object, result:Object = null)
Constructor.
| ResultEvent | ||
|
toString():String
Returns a string representation of the ResultEvent.
| ResultEvent | ||
| Constant | Defined by | ||
|---|---|---|---|
| RESULT : String = "result" [static]
The RESULT event type.
| ResultEvent | ||
| headers | property |
headers:Object [read-only]The HTTP Response headers.
Implementation public function get headers():Object
| result | property |
result:Object [read-only]The HTTP Response body.
Implementation public function get result():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
| ResultEvent | () | constructor |
public function ResultEvent(type:String, statusCode:Number, statusMessage:String, headers:Object, result:Object = 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.
|
|
result:Object (default = null) — The HTTP Response Body.
|
| toString | () | method |
public override function toString():StringReturns a string representation of the ResultEvent.
ReturnsString — String representation of the ResultEvent.
|
| RESULT | constant |
public static const RESULT:String = "result"The RESULT event type.