| Package | flash.net | 
| Class | public class Responder | 
| Inheritance | Responder  Object | 
| Subclasses | MessageResponder | 
| Language Version: | ActionScript 3.0 | 
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Lite 4 | 
NetConnection.call() to handle return
 values from the server related to the success or failure of
 specific operations. When working with NetConnection.call(),
 you may encounter a network operation fault specific to the current operation
 or a fault related to the current connection status. Operation errors target
 the Responder object instead of the NetConnection object for easier error handling.
 
 
 Related API Elements
Public Properties
| Property | Defined By | ||
|---|---|---|---|
|  | constructor : Object 
	 A reference to the class object or constructor function for a given object instance. | Object | |
Public Methods 
| Method | Defined By | ||
|---|---|---|---|
| 
	 Creates a new Responder object. | Responder | ||
|  | 
	 Indicates whether an object has a specified property defined. | Object | |
|  | 
	 Indicates whether an instance of the Object class is in the prototype chain of the object specified 
	 as the parameter. | Object | |
|  | 
	 Indicates whether the specified property exists and is enumerable. | Object | |
|  | 
     Sets the availability of a dynamic property for loop operations. | Object | |
|  | 
	 Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
|  | 
	 Returns the string representation of the specified object. | Object | |
|  | 
	 Returns the primitive value of the specified object. | Object | |
Constructor Detail
| Responder | () | Constructor | 
public function Responder(result:Function, status:Function = null)| Language Version: | ActionScript 3.0 | 
| Runtime Versions: | AIR 1.0, Flash Player 9, Flash Lite 4 | 
	 Creates a new Responder object. You pass a Responder object to
	 NetConnection.call() to handle return values
	 from the server. You may pass null for either or 
	 both parameters.
	 
	 
| result:Function— The function invoked if the call to the server succeeds and returns a result. | |
| status:Function(default =null)— The function invoked if the server returns an error. | 
Thu Dec 4 2014, 05:50 PM -08:00