Packagecom.renaun.rpc
Classpublic class method
Implementsmx.rpc.mxml.IMXMLSupport

The method class for RemoteObjectAMF0 service calls.



Public Properties
 PropertyDefined by
  arguments : Array
method
  concurrency : String
Value that indicates how to handle multiple calls to the same service.
method
  makeObjectsBindable : Boolean
When this value is true, anonymous objects returned are forced to bindable objects.
method
  name : String
Defines the method name that you want to call on the service class.
method
  showBusyCursor : Boolean
If true, a busy cursor is displayed while a service is executing.
method
Public Methods
 MethodDefined by
  
Constructor.
method
Events
 EventSummaryDefined by
   The fault event is dispatched when a service call fails and isn't handled by the Operation itself.method
   The result event is dispatched when a service call successfully returns and isn't handled by the Operation itself.method
Property detail
argumentsproperty
arguments:Array  [read-write]

This property can be used as the source for data binding.

Implementation
    public function get arguments():Array
    public function set arguments(value:Array):void
concurrencyproperty 
concurrency:String  [read-write]

Value that indicates how to handle multiple calls to the same service. The default value is multiple. The following values are permitted:

The default value is multiple.

This property can be used as the source for data binding.

Implementation
    public function get concurrency():String
    public function set concurrency(value:String):void
makeObjectsBindableproperty 
makeObjectsBindable:Boolean  [read-write]

When this value is true, anonymous objects returned are forced to bindable objects.

The default value is false.

This property can be used as the source for data binding.

Implementation
    public function get makeObjectsBindable():Boolean
    public function set makeObjectsBindable(value:Boolean):void
nameproperty 
name:String  [read-write]

Defines the method name that you want to call on the service class.

The default value is empty string.

This property can be used as the source for data binding.

Implementation
    public function get name():String
    public function set name(value:String):void
showBusyCursorproperty 
showBusyCursor:Boolean  [read-write]

If true, a busy cursor is displayed while a service is executing. The default value is false.

The default value is false.

This property can be used as the source for data binding.

Implementation
    public function get showBusyCursor():Boolean
    public function set showBusyCursor(value:Boolean):void
Constructor detail
method()constructor
public function method()

Constructor.

Event detail
faultevent 
Event object type: mx.rpc.events.FaultEvent

The fault event is dispatched when a service call fails and isn't handled by the Operation itself.

The FAULT event type.

resultevent  
Event object type: mx.rpc.events.ResultEvent

The result event is dispatched when a service call successfully returns and isn't handled by the Operation itself.

The RESULT event type.