| Package | eu.orangeflash.webapis.xmlrpc |
| Interface | public interface IMethodCall extends flash.events.IEventDispatcher |
| Implementors | MethodCall, WPMethod |
IClient.invokeMethod instead.
| Property | Defined by | ||
|---|---|---|---|
| client : IClient
Property, indicates
IClient instance. | IMethodCall | ||
| data : Object [read-only]
Property Read-Only, returns raw data recieved from
URLLoader.load() request. | IMethodCall | ||
| methodName : String
Property, indicates methodName on remote server.
| IMethodCall | ||
| params : Array
Property, collection of arguments.
| IMethodCall | ||
| response : IMethodResponse
[read-only]
Property Read-Only, returns reference to
IMethodResponse instance generated on response. | IMethodCall | ||
| result : Array [read-only]
Property[Read-Only], reference to result.
| IMethodCall | ||
| Method | Defined by | ||
|---|---|---|---|
|
invoke(methodName:String = null, params:Array = null):void
| IMethodCall | ||
| Event | Summary | Defined by | ||
|---|---|---|---|---|
| Dispatched when IMethodCall recieves fault from server. | IMethodCall | |||
| Dispatched when IMethodCall invokes method call. | IMethodCall | |||
| Dispatched when IMethodCall recieves response from server. | IMethodCall | |||
| client | property |
client:IClient [read-write]
Property, indicates IClient instance.
public function get client():IClient
public function set client(value:IClient):void
| data | property |
data:Object [read-only]
Property Read-Only, returns raw data recieved from URLLoader.load() request.
public function get data():Object
| methodName | property |
methodName:String [read-write]Property, indicates methodName on remote server.
Implementation public function get methodName():String
public function set methodName(value:String):void
| params | property |
params:Array [read-write]Property, collection of arguments.
Implementation public function get params():Array
public function set params(value:Array):void
| response | property |
response:IMethodResponse [read-only]
Property Read-Only, returns reference to IMethodResponse instance generated on response.
public function get response():IMethodResponse
| result | property |
result:Array [read-only]Property[Read-Only], reference to result.
Implementation public function get result():Array
| invoke | () | method |
public function invoke(methodName:String = null, params:Array = null):voidParameters
methodName:String (default = null) |
|
params:Array (default = null) |
| fault | event |
eu.orangeflash.webapis.events.XMLRPCEvent
Dispatched when IMethodCall recieves fault from server.
| invoke | event |
eu.orangeflash.webapis.events.XMLRPCEvent
Dispatched when IMethodCall invokes method call.
| result | event |
eu.orangeflash.webapis.events.XMLRPCEvent
Dispatched when IMethodCall recieves response from server.