Packagecom.adobe.portfolio.api
Classpublic class SessionDataChangedEvent
InheritanceSessionDataChangedEvent Inheritance flash.events.Event

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

Event dispatched when session data for the Collection changes.

See also

ICollection.setSessionData()


Public Properties
 PropertyDefined By
  key : String
[read-only] The session data key that was changed.
SessionDataChangedEvent
  kind : String
[read-only] The kind of change represented by this event.
SessionDataChangedEvent
  sessionData : *
[read-only] For events with kind ADDED or CHANGED, the new value of the session data.
SessionDataChangedEvent
Public Constants
 ConstantDefined By
  ADDED : String = added
[static] Value of the kind property indicating that new session data was added.
SessionDataChangedEvent
  CHANGED : String = changed
[static] Value of the kind property indicating that existing session data was modified.
SessionDataChangedEvent
  DELETED : String = delete
[static] Value of the kind property indicating that session data was deleted.
SessionDataChangedEvent
  SESSION_DATA_CHANGED : String = sessionDataChanged
[static] Defines the value of the type property of the Event object for a sessionDataChanged event.
SessionDataChangedEvent
Property Detail
keyproperty
key:String  [read-only]

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

The session data key that was changed.


Implementation
    public function get key():String
kindproperty 
kind:String  [read-only]

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

The kind of change represented by this event. One of the following: ADDED, CHANGED, DELETED.


Implementation
    public function get kind():String

See also

sessionDataproperty 
sessionData:*  [read-only]

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

For events with kind ADDED or CHANGED, the new value of the session data. For events with kind DELETED this is null.


Implementation
    public function get sessionData():*
Constant Detail
ADDEDConstant
public static const ADDED:String = added

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

Value of the kind property indicating that new session data was added.

CHANGEDConstant 
public static const CHANGED:String = changed

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

Value of the kind property indicating that existing session data was modified.

DELETEDConstant 
public static const DELETED:String = delete

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

Value of the kind property indicating that session data was deleted.

SESSION_DATA_CHANGEDConstant 
public static const SESSION_DATA_CHANGED:String = sessionDataChanged

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

Defines the value of the type property of the Event object for a sessionDataChanged event.