Pacchetto | coldfusion.air |
Classe | public dynamic class SessionToken |
Ereditarietà | SessionToken Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
Session
class.
It also allows an IResponder to be attached for an individual call.
The SessionToken can be referenced in SessionResultEvent and SessionFaultEvent from the sessionToken property.
Proprietà | Definito da | ||
---|---|---|---|
autoGeneratedId : Object
The auto-generated key for inserts. | SessionToken | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
responders : Array [sola lettura]
An array of IResponder handlers that will be called when
the asynchronous request completes. | SessionToken | ||
result : Object
The result that was returned by the associated call. | SessionToken | ||
session : Session [sola lettura]
The session object associated with the token. | SessionToken | ||
UID : String [sola lettura]
Returns the UID associated with the token. | SessionToken |
Metodo | Definito da | ||
---|---|---|---|
SessionToken(session:Session)
Creates an instance of the SessionToken class. | SessionToken | ||
addResponder adds a responder to an Array of responders. | SessionToken | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Determines if this token has at least one mx.rpc.IResponder registered. | SessionToken | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
autoGeneratedId | proprietà |
public var autoGeneratedId:Object
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9.0.1 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
The auto-generated key for inserts. If not generated, the value is null.
responders | proprietà |
responders:Array
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
An array of IResponder handlers that will be called when
the asynchronous request completes.
Each responder assigned to the token will have its result
or fault
function called by passing in the
matching event before the operation or service dispatches the
event itself.
Implementazione
public function get responders():Array
result | proprietà |
public var result:Object
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
The result that was returned by the associated call.
scope | proprietà |
cfair_internal var scope:Object
session | proprietà |
UID | proprietà |
SessionToken | () | Funzione di costruzione |
addResponder | () | metodo |
public function addResponder(responder:IResponder):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
addResponder
adds a responder to an Array of responders.
The object assigned to the responder parameter must implement
mx.rpc.IResponder
.
Parametri
responder:IResponder — A handler which will be called when the asynchronous request completes.
|
Elementi API correlati
hasResponder | () | metodo |
public function hasResponder():Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | ColdFusion 9 |
Versioni runtime: | Flash Player 9, AIR 1.0 |
Determines if this token has at least one mx.rpc.IResponder
registered.
Boolean — true if at least one responder has been added to this token.
|
Tue Jun 12 2018, 02:44 PM Z