Inherit from this base class to easily create a serializable class. More...
Protected Member Functions | |
virtual void | OnGetState (SerializationInfo info, StateMode mode) |
Override this method to insert your field values into the MobileFormatter serialzation stream. More... | |
virtual void | OnGetChildren (SerializationInfo info, MobileFormatter formatter) |
Override this method to insert your child object references into the MobileFormatter serialzation stream. More... | |
virtual void | OnSetState (SerializationInfo info, StateMode mode) |
Override this method to retrieve your field values from the MobileFormatter serialzation stream. More... | |
virtual void | OnSetChildren (SerializationInfo info, MobileFormatter formatter) |
Override this method to retrieve your child object references from the MobileFormatter serialzation stream. More... | |
Additional Inherited Members |
Inherit from this base class to easily create a serializable class.
Definition at line 19 of file MobileObject.cs.
|
protectedvirtual |
Override this method to insert your child object references into the MobileFormatter serialzation stream.
info | Object containing the data to serialize. |
formatter | Reference to MobileFormatter instance. Use this to convert child references to/from reference id values. |
Reimplemented in Csla.Core.FieldManager.FieldDataManager, Csla.Core.ManagedObjectBase, and Csla.Rules.BusinessRules.
Definition at line 59 of file MobileObject.cs.
|
protectedvirtual |
Override this method to insert your field values into the MobileFormatter serialzation stream.
info | Object containing the data to serialize. |
mode | The StateMode indicating why this method was invoked. |
Reimplemented in Csla.Core.FieldManager.FieldDataManager, Csla.Core.UndoableBase, Csla.NameValueListBase< K, V >.NameValuePair, Csla.Rules.BrokenRule, and Csla.Rules.BusinessRules.
Definition at line 44 of file MobileObject.cs.
|
protectedvirtual |
Override this method to retrieve your child object references from the MobileFormatter serialzation stream.
info | Object containing the data to serialize. |
formatter | Reference to MobileFormatter instance. Use this to convert child references to/from reference id values. |
Reimplemented in Csla.Core.FieldManager.FieldDataManager, Csla.Core.ManagedObjectBase, and Csla.Rules.BusinessRules.
Definition at line 102 of file MobileObject.cs.
|
protectedvirtual |
Override this method to retrieve your field values from the MobileFormatter serialzation stream.
info | Object containing the data to serialize. |
mode | The StateMode indicating why this method was invoked. |
Reimplemented in Csla.Core.FieldManager.FieldDataManager, Csla.Core.UndoableBase, Csla.NameValueListBase< K, V >.NameValuePair, Csla.Rules.BrokenRule, and Csla.Rules.BusinessRules.
Definition at line 87 of file MobileObject.cs.