Is there some library for flex, that will let me:
- define properties to fully exclude from serialization
- define classes to serialize without the property names (as if they were an array)
thanks...
Is there some library for flex, that will let me:
thanks...
If you want to exclude a property from serialization you can use the [Transient] meta tag.
[Transient]
public var someVar:String;