| Package | com.yworks.remote |
| Interface | public interface ServerAction |
| Implementors | DefaultServerAction |
| Property | Defined By | ||
|---|---|---|---|
| url : String
The location of the server action. | ServerAction | ||
| Method | Defined By | ||
|---|---|---|---|
sendAction():void
invokes the server action at the url using the
current parameters. | ServerAction | ||
setParameters(parameters:Object):void
Set the parameters that will be sent to the url
upon the next call to sendAction. | ServerAction | ||
| url | property |
url:StringThe location of the server action.
public function get url():String public function set url(value:String):void| sendAction | () | method |
public function sendAction():void
invokes the server action at the url using the
current parameters.
| setParameters | () | method |
public function setParameters(parameters:Object):void
Set the parameters that will be sent to the url
upon the next call to sendAction.
After the parameters have been submitted, the parameters are cleared.
Parameters
parameters:Object — The parameters to send.
|