Packageflash.net
Interfacepublic interface IDynamicPropertyWriter

Language version: ActionScript 3.0
Runtime version: 

This interface is used with the IDynamicPropertyOutput interface to control the serialization of dynamic properties of dynamic objects. To use this interface, assign an object that implements the IDynamicPropertyWriter interface to the ObjectEncoding.dynamicPropertyWriter property.

See also

IDynamicPropertyOutput
ObjectEncoding.dynamicPropertyWriter


Public Methods
 MethodDefined by
  
Writes the name and value of an IDynamicPropertyOutput object to an object with dynamic properties.
IDynamicPropertyWriter
Method detail
writeDynamicProperties()method
public function writeDynamicProperties(obj:Object, output:IDynamicPropertyOutput):void

Language version: ActionScript 3.0
Runtime version: 

Writes the name and value of an IDynamicPropertyOutput object to an object with dynamic properties. If ObjectEncoding.dynamicPropertyWriter is set, this method is invoked for each object with dynamic properties.

Parameters
obj:Object — The object to write to.
 
output:IDynamicPropertyOutput — The IDynamicPropertyOutput object that contains the name and value to dynamically write to the object.

See also